summary refs log tree commit diff
path: root/pkgs/tools/filesystems/unionfs-fuse/default.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2012-12-15 20:32:10 -0500
committerShea Levy <shea@shealevy.com>2012-12-16 16:25:24 -0500
commit42b061d1188a504ef134ebe4cea0ef78dfab009c (patch)
tree353459ff9fc80cc71046eb57f811bf044e440a12 /pkgs/tools/filesystems/unionfs-fuse/default.nix
parent88e43775fdf15f49208044b69c7120327aba41a9 (diff)
downloadnixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar.gz
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar.bz2
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar.lz
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar.xz
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.tar.zst
nixpkgs-42b061d1188a504ef134ebe4cea0ef78dfab009c.zip
Add unionfs-fuse
Diffstat (limited to 'pkgs/tools/filesystems/unionfs-fuse/default.nix')
-rw-r--r--pkgs/tools/filesystems/unionfs-fuse/default.nix13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkgs/tools/filesystems/unionfs-fuse/default.nix b/pkgs/tools/filesystems/unionfs-fuse/default.nix
new file mode 100644
index 00000000000..fac5265bb9d
--- /dev/null
+++ b/pkgs/tools/filesystems/unionfs-fuse/default.nix
@@ -0,0 +1,13 @@
+{ stdenv, fetchurl, cmake, fuse }:
+
+stdenv.mkDerivation rec {
+  name = "unionfs-fuse-0.26";
+
+  src = fetchurl {
+    url = "http://podgorny.cz/unionfs-fuse/releases/${name}.tar.xz";
+
+    sha256 = "0qpnr4czgc62vsfnmv933w62nq3xwcbnvqch72qakfgca75rsp4d";
+  };
+
+  buildInputs = [ cmake fuse ];
+}