mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
26 lines
658 B
Nix
26 lines
658 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cachefilesd";
|
|
version = "0.10.10";
|
|
|
|
src = fetchurl {
|
|
url = "https://people.redhat.com/dhowells/fscache/${pname}-${version}.tar.bz2";
|
|
sha256 = "00hsw4cdlm13wijlygp8f0aq6gxdp0skbxs9r2vh5ggs3s2hj0qd";
|
|
};
|
|
|
|
installFlags = [
|
|
"ETCDIR=$(out)/etc"
|
|
"SBINDIR=$(out)/sbin"
|
|
"MANDIR=$(out)/share/man"
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Local network file caching management daemon";
|
|
homepage = https://people.redhat.com/dhowells/fscache/;
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ abbradar ];
|
|
};
|
|
}
|