mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-14 11:57:52 +00:00
Merge pull request #74 from lovesegfault/fix-lib
This commit is contained in:
commit
444b289bc2
3 changed files with 6 additions and 6 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, makeWrapper, gnupg, coreutils, utillinux, unixtools }:
|
||||
{ stdenv, lib, makeWrapper, gnupg, coreutils, utillinux, unixtools }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sops-init-gpg-key";
|
||||
|
@ -11,7 +11,7 @@ stdenv.mkDerivation {
|
|||
installPhase = ''
|
||||
install -m755 -D $src $out/bin/sops-init-gpg-key
|
||||
wrapProgram $out/bin/sops-init-gpg-key \
|
||||
--prefix PATH : ${stdenv.lib.makeBinPath [
|
||||
--prefix PATH : ${lib.makeBinPath [
|
||||
coreutils utillinux gnupg unixtools.hostname
|
||||
]}
|
||||
'';
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildGoModule, path, pkgs, vendorSha256, go }:
|
||||
{ stdenv, lib, buildGoModule, path, pkgs, vendorSha256, go }:
|
||||
buildGoModule {
|
||||
pname = "sops-install-secrets";
|
||||
version = "0.0.1";
|
||||
|
@ -28,7 +28,7 @@ buildGoModule {
|
|||
|
||||
inherit vendorSha256;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Atomic secret provisioning based on sops";
|
||||
homepage = "https://github.com/Mic92/sops-nix";
|
||||
license = licenses.mit;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, buildGoModule, gnupg, vendorSha256, }:
|
||||
{ stdenv, lib, buildGoModule, gnupg, vendorSha256, }:
|
||||
buildGoModule {
|
||||
pname = "ssh-to-pgp";
|
||||
version = "0.0.1";
|
||||
|
@ -16,7 +16,7 @@ buildGoModule {
|
|||
|
||||
inherit vendorSha256;
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
meta = with lib; {
|
||||
description = "Convert ssh public/private keys to PGP";
|
||||
homepage = "https://github.com/Mic92/sops-nix";
|
||||
license = licenses.mit;
|
||||
|
|
Loading…
Reference in a new issue