about summary refs log tree commit diff
path: root/pkgs/tools/filesystems/unionfs-fuse/default.nix
blob: fac5265bb9dd2858149f89073b5e48a9d760cc70 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 ];
}