bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
23 lines
581 B
Nix
23 lines
581 B
Nix
{ lib, stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "pass-file";
|
|
version = "1.0.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dvogt23";
|
|
repo = pname;
|
|
rev = version;
|
|
hash = "sha256-18KvmcfLwelyk9RV/IMaj6O/nkQEQz84eUEB/mRaKE4=";
|
|
};
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pass extension that allows to add files to password-store";
|
|
homepage = "https://github.com/dvogt23/pass-file";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ taranarmo ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|