Merge pull request #220480 from Cynerd/fatcat

fatcat: init at 1.1.1
This commit is contained in:
Sandro
2023-07-19 00:33:45 +02:00
committed by GitHub
2 changed files with 35 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{ 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";
homepage = "https://github.com/Gregwar/fatcat";
license = licenses.mit;
maintainers = with maintainers; [ cynerd ];
};
}
+2
View File
@@ -18885,6 +18885,8 @@ with pkgs;
fastgron = callPackage ../development/tools/fastgron { };
fatcat = callPackage ../development/tools/fatcat { };
findbugs = callPackage ../development/tools/analysis/findbugs { };
findnewest = callPackage ../development/tools/misc/findnewest { };