nixpkgs/pkgs/tools/filesystems/disorderfs/default.nix
R. RyanTM c6ddd51854 disorderfs: 0.5.4 -> 0.5.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/disorderfs/versions
2018-11-09 23:51:17 -08:00

27 lines
719 B
Nix

{ stdenv, fetchurl, pkgconfig, fuse, attr, asciidoc }:
stdenv.mkDerivation rec {
name = "disorderfs-${version}";
version = "0.5.5";
src = fetchurl {
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.gz";
sha256 = "1y1i7k5mx2pxr9bpijnsjyyw8qd7ak1h48gf6a6ca3dhna9ws6i1";
};
nativeBuildInputs = [ pkgconfig asciidoc ];
buildInputs = [ fuse attr ];
sourceRoot = ".";
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 ];
};
}