mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
21 lines
502 B
Nix
21 lines
502 B
Nix
{ 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 ];
|
|
|
|
meta = {
|
|
description = "FUSE UnionFS implementation";
|
|
homepage = http://podgorny.cz/moin/UnionFsFuse;
|
|
license = stdenv.lib.licenses.bsd3;
|
|
maintainers = [ stdenv.lib.maintainers.shlevy ];
|
|
};
|
|
}
|