nixpkgs/pkgs/by-name/ke/keedump/package.nix
Fabian Affolter aa31edd746 keedump: init at 0.1.0
KeePass master password dumper

https://github.com/ynuwenhof/keedump
2023-11-19 22:41:26 +01:00

28 lines
710 B
Nix

{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "keedump";
version = "0.1.0";
src = fetchFromGitHub {
owner = "ynuwenhof";
repo = "keedump";
rev = "refs/tags/v${version}";
hash = "sha256-V7wQZoUnISELuzjSUz+CJ77XJvlnGBK2n4U4pKlk+xI=";
};
cargoHash = "sha256-b5jRWmyCvKCDn1fIXTtLCI1Ckr+Ttt7erDbZs4U2TcE=";
meta = with lib; {
description = "PoC KeePass master password dumper";
homepage = "https://github.com/ynuwenhof/keedump";
changelog = "https://github.com/ynuwenhof/keedump/releases/tag/v${version}";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ fab ];
mainProgram = "keedump";
};
}