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