mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-01 18:44:07 +00:00
25 lines
698 B
Nix
25 lines
698 B
Nix
|
{ 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 ];
|
||
|
};
|
||
|
}
|