mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
e1e4a5e540
Otherwise, it tries to create the cache directory under $HOME.
39 lines
755 B
Nix
39 lines
755 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromSourcehut
|
|
, hare
|
|
, scdoc
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "himitsu";
|
|
version = "0.1";
|
|
|
|
src = fetchFromSourcehut {
|
|
name = pname + "-src";
|
|
owner = "~sircmpwn";
|
|
repo = pname;
|
|
rev = "003c14747fcddceb5359c9503f20c44b15fea5fa";
|
|
hash = "sha256-tzBTDJKMuFh9anURy1aKQTmt77tI7wZDZQiOUowuomk=";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|