887295fd2d
@the-kenny did a good job in the past and is set as maintainer in many package, however since 2017-2018 he stopped contributing. To create less confusion in pull requests when people try to request his feedback, I removed him as maintainer from all packages.
31 lines
805 B
Nix
31 lines
805 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pass-update";
|
|
version = "2.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "roddhjav";
|
|
repo = "pass-update";
|
|
rev = "v${version}";
|
|
sha256 = "0yx8w97jcp6lv7ad5jxqnj04csbrn2hhc4pskssxknw2sbvg4g6c";
|
|
};
|
|
|
|
postPatch = ''
|
|
substituteInPlace Makefile \
|
|
--replace "BASHCOMPDIR ?= /etc/bash_completion.d" "BASHCOMPDIR ?= $out/etc/bash_completion.d"
|
|
'';
|
|
|
|
dontBuild = true;
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Pass extension that provides an easy flow for updating passwords";
|
|
homepage = "https://github.com/roddhjav/pass-update";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ lovek323 fpletz tadfisher ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|