bindfs: add expression
This commit is contained in:
parent
d5b5d763cd
commit
297599a299
23
pkgs/tools/filesystems/bindfs/default.nix
Normal file
23
pkgs/tools/filesystems/bindfs/default.nix
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{ stdenv, fetchurl, fuse, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
version = "1.12.6";
|
||||||
|
name = "bindfs-${version}";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "http://bindfs.org/downloads/${name}.tar.gz";
|
||||||
|
sha256 = "0s90n1n4rvpcg51ixr5wx8ixml1xnc7w28xlbnms34v19pzghm59";
|
||||||
|
};
|
||||||
|
|
||||||
|
dontStrip = true;
|
||||||
|
|
||||||
|
buildInputs = [ fuse pkgconfig ];
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "A FUSE filesystem for mounting a directory to another location";
|
||||||
|
homepage = http://bindfs.org;
|
||||||
|
license = stdenv.lib.licenses.gpl2;
|
||||||
|
maintainers = with stdenv.lib.maintainers; [ lovek323 ];
|
||||||
|
platforms = stdenv.lib.platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
@ -578,6 +578,8 @@ let
|
|||||||
|
|
||||||
bfr = callPackage ../tools/misc/bfr { };
|
bfr = callPackage ../tools/misc/bfr { };
|
||||||
|
|
||||||
|
bindfs = callPackage ../tools/filesystems/bindfs { };
|
||||||
|
|
||||||
bitbucket-cli = pythonPackages.bitbucket-cli;
|
bitbucket-cli = pythonPackages.bitbucket-cli;
|
||||||
|
|
||||||
blockdiag = pythonPackages.blockdiag;
|
blockdiag = pythonPackages.blockdiag;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user