2015-11-22 10:36:07 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, attr, asciidoc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "disorderfs-${version}";
|
2018-05-17 19:38:00 +00:00
|
|
|
version = "0.5.3";
|
2015-11-22 10:36:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-05-17 19:38:00 +00:00
|
|
|
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.gz";
|
|
|
|
sha256 = "1zx6248cwfcci5555sk9iwl9lz6x8kzc9qgiq4jv04zjiapivdnq";
|
2015-11-22 10:36:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig asciidoc ];
|
|
|
|
|
|
|
|
buildInputs = [ fuse attr ];
|
|
|
|
|
2018-05-17 19:38:00 +00: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 ];
|
|
|
|
};
|
|
|
|
}
|