nixpkgs/pkgs/tools/security/pass/extensions/update.nix

31 lines
815 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub }:
2018-04-18 19:27:03 +00:00
stdenv.mkDerivation rec {
pname = "pass-update";
2020-03-15 22:51:38 +00:00
version = "2.1";
2018-04-18 19:27:03 +00:00
src = fetchFromGitHub {
owner = "roddhjav";
repo = "pass-update";
rev = "v${version}";
2020-03-15 22:51:38 +00:00
sha256 = "0yx8w97jcp6lv7ad5jxqnj04csbrn2hhc4pskssxknw2sbvg4g6c";
2018-04-18 19:27:03 +00:00
};
2020-03-15 22:51:38 +00:00
postPatch = ''
substituteInPlace Makefile \
--replace "BASHCOMPDIR ?= /etc/bash_completion.d" "BASHCOMPDIR ?= $out/share/bash-completion/completions"
2020-03-15 22:51:38 +00:00
'';
2018-04-18 19:27:03 +00:00
dontBuild = true;
installFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
2018-04-18 19:27:03 +00:00
description = "Pass extension that provides an easy flow for updating passwords";
homepage = "https://github.com/roddhjav/pass-update";
2018-04-18 19:27:03 +00:00
license = licenses.gpl3Plus;
maintainers = with maintainers; [ lovek323 fpletz tadfisher ];
2018-04-18 19:27:03 +00:00
platforms = platforms.unix;
};
}