2015-11-22 10:36:07 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, fuse, attr, asciidoc }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "disorderfs-${version}";
|
2017-11-11 13:47:59 +00:00
|
|
|
version = "0.5.2";
|
2015-11-22 10:36:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-11-11 13:47:59 +00:00
|
|
|
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.bz2";
|
|
|
|
sha256 = "0jdadb1ppd5qrnngpjv14az32gwslag2wwv1k8rs29iqlfy38cjf";
|
2015-11-22 10:36:07 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ pkgconfig asciidoc ];
|
|
|
|
|
|
|
|
buildInputs = [ fuse attr ];
|
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|