mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
Add unionfs-fuse
This commit is contained in:
parent
88e43775fd
commit
42b061d118
13
pkgs/tools/filesystems/unionfs-fuse/default.nix
Normal file
13
pkgs/tools/filesystems/unionfs-fuse/default.nix
Normal file
@ -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 ];
|
||||
}
|
@ -553,6 +553,8 @@ let
|
||||
|
||||
unifdef = callPackage ../development/tools/misc/unifdef { };
|
||||
|
||||
unionfs-fuse = callPackage ../tools/filesystems/unionfs-fuse { };
|
||||
|
||||
usb_modeswitch = callPackage ../development/tools/misc/usb-modeswitch { };
|
||||
|
||||
clamav = callPackage ../tools/security/clamav { };
|
||||
|
Loading…
Reference in New Issue
Block a user