mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
25 lines
718 B
Nix
25 lines
718 B
Nix
{ lib, stdenv, fetchurl, pkg-config, fuse, attr, asciidoc }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "disorderfs";
|
|
version = "0.5.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://http.debian.net/debian/pool/main/d/disorderfs/disorderfs_${version}.orig.tar.bz2";
|
|
sha256 = "sha256-KqAMKVUykCgVdNyjacZjpVXqVdeob76v0iOuSd4TNIY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config asciidoc ];
|
|
|
|
buildInputs = [ fuse attr ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Overlay FUSE filesystem that introduces non-determinism into filesystem metadata";
|
|
mainProgram = "disorderfs";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ pSub ];
|
|
};
|
|
}
|