fatcat: init at 1.1.1

This commit is contained in:
Karel Kočí 2023-03-10 13:33:22 +01:00
parent f7ba622838
commit 42657b37b8
No known key found for this signature in database
GPG Key ID: D83BD732AC2BD828
2 changed files with 35 additions and 0 deletions

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 ];
};
}

View File

@ -18800,6 +18800,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 { };