mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
531e4b80c9
Only acts on one-line dependency lists.
28 lines
725 B
Nix
28 lines
725 B
Nix
{ 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;
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ fuse ];
|
|
postFixup = ''
|
|
ln -s $out/bin/bindfs $out/bin/mount.fuse.bindfs
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|