nixpkgs/pkgs/tools/security/himitsu/default.nix
2023-05-11 19:34:03 -07:00

39 lines
720 B
Nix

{ lib
, stdenv
, fetchFromSourcehut
, hare
, scdoc
}:
stdenv.mkDerivation rec {
pname = "himitsu";
version = "0.3";
src = fetchFromSourcehut {
name = pname + "-src";
owner = "~sircmpwn";
repo = pname;
rev = version;
hash = "sha256-HoAntg9aQhMmff3T3/xnor7Sf3yX9qBbZlpVfyac5o8=";
};
nativeBuildInputs = [
hare
scdoc
];
preConfigure = ''
export HARECACHE=$(mktemp -d)
'';
installFlags = [ "PREFIX=" "DESTDIR=$(out)" ];
meta = with lib; {
homepage = "https://himitsustore.org/";
description = "A secret storage manager";
license = licenses.gpl3Only;
maintainers = with maintainers; [ auchter ];
inherit (hare.meta) platforms badPlatforms;
};
}