summary refs log tree commit diff
path: root/pkgs/os-specific/linux/cachefilesd
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2016-10-16 19:52:06 +0300
committerNikolay Amiantov <ab@fmap.me>2016-10-16 19:58:29 +0300
commit40547dd4c41e3cf0628c0bb3e2384278cc539313 (patch)
treea295cc4e51b03dbdf73a4d71ab1003e817476849 /pkgs/os-specific/linux/cachefilesd
parent4ceca4fe4f1d5f0fac900de8712edee56d9b51a7 (diff)
downloadnixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar.gz
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar.bz2
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar.lz
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar.xz
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.tar.zst
nixpkgs-40547dd4c41e3cf0628c0bb3e2384278cc539313.zip
cachefilesd: init at 0.10.9
Diffstat (limited to 'pkgs/os-specific/linux/cachefilesd')
-rw-r--r--pkgs/os-specific/linux/cachefilesd/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/cachefilesd/default.nix b/pkgs/os-specific/linux/cachefilesd/default.nix
new file mode 100644
index 00000000000..99cb7d264fe
--- /dev/null
+++ b/pkgs/os-specific/linux/cachefilesd/default.nix
@@ -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 ];
+  };
+}