f4c968eaef
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
26 lines
719 B
Nix
26 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 ];
|
|
};
|
|
}
|