disorderfs: init at 0.4.1
This commit is contained in:
parent
c22b0ae323
commit
5e0dca6d06
2 changed files with 28 additions and 0 deletions
24
pkgs/tools/filesystems/disorderfs/default.nix
Normal file
24
pkgs/tools/filesystems/disorderfs/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, fetchurl, pkgconfig, fuse, attr, asciidoc }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "disorderfs-${version}";
|
||||
version = "0.4.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.gz";
|
||||
sha256 = "1kiih49l3wi8nhybzrb0kn4aidhpy23s5h2grjwx8rwla5b4cja6";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -811,6 +811,10 @@ let
|
|||
|
||||
discount = callPackage ../tools/text/discount { };
|
||||
|
||||
disorderfs = callPackage ../tools/filesystems/disorderfs {
|
||||
asciidoc = asciidoc-full;
|
||||
};
|
||||
|
||||
ditaa = callPackage ../tools/graphics/ditaa { };
|
||||
|
||||
dlx = callPackage ../misc/emulators/dlx { };
|
||||
|
|
Loading…
Reference in a new issue