cachefilesd: init at 0.10.9
This commit is contained in:
parent
4ceca4fe4f
commit
40547dd4c4
|
@ -0,0 +1,25 @@
|
|||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cachefilesd-${version}";
|
||||
version = "0.10.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://people.redhat.com/dhowells/fscache/${name}.tar.bz2";
|
||||
sha256 = "1jkb3qd8rcmli3g2qgcpp1f9kklil4qgy86w7pg2cpv10ikyr5y8";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -10456,6 +10456,8 @@ in
|
|||
|
||||
busybox = callPackage ../os-specific/linux/busybox { };
|
||||
|
||||
cachefilesd = callPackage ../os-specific/linux/cachefilesd { };
|
||||
|
||||
cgmanager = callPackage ../os-specific/linux/cgmanager { };
|
||||
|
||||
checkpolicy = callPackage ../os-specific/linux/checkpolicy { };
|
||||
|
|
Loading…
Reference in New Issue