nixpkgs/pkgs/tools/filesystems/disorderfs/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
The nixpkgs-unstable channel's programs.sqlite was used to identify
packages producing exactly one binary, and these automatically added
to their package definitions wherever possible.
2024-03-19 03:14:51 +01:00

26 lines
721 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 = "An overlay FUSE filesystem that introduces non-determinism into filesystem metadata";
mainProgram = "disorderfs";
license = licenses.gpl3;
platforms = platforms.linux;
maintainers = with maintainers; [ pSub ];
};
}