nixpkgs/pkgs/tools/security/krunner-pass/default.nix

44 lines
1.1 KiB
Nix
Raw Normal View History

2019-05-03 01:44:03 +00:00
{ mkDerivation, lib, fetchFromGitHub, fetchpatch, cmake, extra-cmake-modules
, kauth, krunner
, pass, pass-otp ? null }:
2018-03-20 21:42:08 +00:00
2019-05-03 01:44:03 +00:00
mkDerivation rec {
2018-03-20 21:42:08 +00:00
pname = "krunner-pass";
version = "1.3.0";
src = fetchFromGitHub {
owner = "akermu";
repo = "krunner-pass";
rev = "v${version}";
sha256 = "032fs2174ls545kjixbhzyd65wgxkw4s5vg8b20irc5c9ak3pxm0";
};
buildInputs = [
2019-05-03 01:44:03 +00:00
kauth krunner
pass pass-otp
2018-03-20 21:42:08 +00:00
];
2019-05-03 01:44:03 +00:00
nativeBuildInputs = [ cmake extra-cmake-modules ];
2018-03-20 21:42:08 +00:00
patches = [
2019-05-03 01:44:03 +00:00
(fetchpatch {
url = https://github.com/peterhoeg/krunner-pass/commit/be2695f4ae74b0cccec8294defcc92758583d96b.patch;
sha256 = "098dqnal57994p51p2srfzg4lgcd6ybp29h037llr9cdv02hdxvl";
name = "fix_build.patch";
})
2018-03-20 21:42:08 +00:00
./pass-path.patch
];
CXXFLAGS = [
2019-05-03 01:44:03 +00:00
''-DNIXPKGS_PASS=\"${lib.getBin pass}/bin/pass\"''
2018-03-20 21:42:08 +00:00
];
2019-05-03 01:44:03 +00:00
meta = with lib; {
2018-03-20 21:42:08 +00:00
description = "Integrates krunner with pass the unix standard password manager (https://www.passwordstore.org/)";
homepage = https://github.com/akermu/krunner-pass;
license = licenses.gpl3;
maintainers = with maintainers; [ ysndr ];
platforms = platforms.unix;
};
}