himitsu 0.4 -> 0.5 https://repology.org/project/himitsu/versions attrpath: himitsu Checking auto update branch... No auto update branch exists Old version 0.4" not present in master derivation file with contents: { lib , stdenv , fetchFromSourcehut , hare , scdoc }: stdenv.mkDerivation rec { pname = "himitsu"; version = "0.5"; src = fetchFromSourcehut { name = pname + "-src"; owner = "~sircmpwn"; repo = pname; rev = version; hash = "sha256-rZ3gzVz7V3psHAMxTCaJXZh4uP4gIeyb9Bf23kzCBWg="; }; 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; }; }