Skip to content

Instantly share code, notes, and snippets.

@alexbakker
Created March 29, 2020 10:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alexbakker/9eb6d1311292b24a5d81e5714453a25f to your computer and use it in GitHub Desktop.
Save alexbakker/9eb6d1311292b24a5d81e5714453a25f to your computer and use it in GitHub Desktop.
{ stdenv, fetchFromGitHub, cmake, pkgconfig, gtk3, libsodium, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "spicypass";
version = "0.0.0";
src = fetchFromGitHub {
owner = "JFreegman";
repo = "SpicyPass";
rev = "0613add09aed646340a00dde48d8637ec9a34deb";
sha256 = "1h8qp17yi8i7xvc9mxmxasnrymnfrxyva68m3c479adhz1lgxhgr";
};
buildInputs = [ gtk3 libsodium ];
nativeBuildInputs = [ cmake pkgconfig wrapGAppsHook ];
meta = with stdenv.lib; {
description = "A light-weight password manager with a focus on simplicity and security";
homepage = https://github.com/JFreegman/SpicyPass;
license = licenses.gpl3;
maintainers = with maintainers; [ alexbakker ];
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment