1
0
Fork 0
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:
Jörg Thalheim 2021-02-01 08:32:57 +00:00 committed by GitHub
commit 444b289bc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View file

@ -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
]}
'';

View file

@ -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;

View file

@ -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;