1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-25 15:11:35 +00:00
nixpkgs/pkgs/tools/filesystems/disorderfs/default.nix

27 lines
719 B
Nix
Raw Normal View History

2015-11-22 10:36:07 +00:00
{ stdenv, fetchurl, pkgconfig, fuse, attr, asciidoc }:
stdenv.mkDerivation rec {
name = "disorderfs-${version}";
version = "0.5.5";
2015-11-22 10:36:07 +00:00
src = fetchurl {
2018-05-17 20:38:00 +01:00
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.gz";
sha256 = "1y1i7k5mx2pxr9bpijnsjyyw8qd7ak1h48gf6a6ca3dhna9ws6i1";
2015-11-22 10:36:07 +00:00
};
nativeBuildInputs = [ pkgconfig asciidoc ];
buildInputs = [ fuse attr ];
2018-05-17 20:38:00 +01:00
sourceRoot = ".";
2015-11-22 10:36:07 +00:00
installFlags = [ "PREFIX=$(out)" ];
meta = with stdenv.lib; {
description = "An overlay FUSE filesystem that introduces non-determinism into filesystem metadata";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}