2021-01-17 09:17:16 +00:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, fuse, attr, asciidoc }:
|
2015-11-22 10:36:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "disorderfs";
|
2021-01-21 20:58:41 +00:00
|
|
|
version = "0.5.11";
|
2015-11-22 10:36:07 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-03 18:19:25 +00:00
|
|
|
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.bz2";
|
2021-01-21 20:58:41 +00:00
|
|
|
sha256 = "sha256-KqAMKVUykCgVdNyjacZjpVXqVdeob76v0iOuSd4TNIY=";
|
2015-11-22 10:36:07 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 09:17:16 +00:00
|
|
|
nativeBuildInputs = [ pkg-config asciidoc ];
|
2015-11-22 10:36:07 +00:00
|
|
|
|
|
|
|
buildInputs = [ fuse attr ];
|
|
|
|
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2015-11-22 10:36:07 +00:00
|
|
|
description = "An overlay FUSE filesystem that introduces non-determinism into filesystem metadata";
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ pSub ];
|
|
|
|
};
|
|
|
|
}
|