nixpkgs/pkgs/tools/filesystems/disorderfs/default.nix
R. RyanTM f4c968eaef disorderfs: 0.5.3 -> 0.5.4
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-10-03 14:07:48 -07:00

27 lines
719 B
Nix

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