mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-17 17:44:44 +00:00
fatcat: init at 1.1.1
This commit is contained in:
parent
f7ba622838
commit
42657b37b8
33
pkgs/development/tools/fatcat/default.nix
Normal file
33
pkgs/development/tools/fatcat/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user