nixpkgs/pkgs/development/tools/fatcat/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

35 lines
665 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, cmake
, gitUpdater
}:
stdenv.mkDerivation rec {
pname = "fatcat";
version = "1.1.1";
src = fetchFromGitHub {
owner = "Gregwar";
repo = "fatcat";
rev = "v${version}";
hash = "sha256-/iGNVP7Bz/UZAR+dFxAKMKM9jm07h0x0F3VGpdxlHdk=";
};
nativeBuildInputs = [
cmake
];
passthru.updateScript = gitUpdater {
rev-prefix = "v";
};
meta = with lib; {
description = "FAT filesystems explore, extract, repair, and forensic tool";
mainProgram = "fatcat";
homepage = "https://github.com/Gregwar/fatcat";
license = licenses.mit;
maintainers = with maintainers; [ cynerd ];
};
}