nixpkgs/pkgs/tools/filesystems/disorderfs/default.nix

25 lines
689 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, pkg-config, fuse, attr, asciidoc }:
2015-11-22 10:36:07 +00:00
stdenv.mkDerivation rec {
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
};
nativeBuildInputs = [ pkg-config asciidoc ];
2015-11-22 10:36:07 +00:00
buildInputs = [ fuse attr ];
installFlags = [ "PREFIX=$(out)" ];
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 ];
};
}