b189247ba0
Uses the HTTPS url for cases where the existing URL has a permanent redirect. For each domain, at least one fixed derivation URL was downloaded to test the domain is properly serving downloads. Also fixes jbake source URL, which was broken.
28 lines
726 B
Nix
28 lines
726 B
Nix
{ stdenv, fetchurl, fuse, pkgconfig }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.13.9";
|
|
name = "bindfs-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://bindfs.org/downloads/${name}.tar.gz";
|
|
sha256 = "1dgqjq2plpds442ygpv8czr5v199ljscp33m89y19x04ssljrymc";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|