mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-05 08:07:16 +00:00
no longer use out-dated aliases
This commit is contained in:
parent
17f009daf0
commit
9a381e3b2d
4 changed files with 5 additions and 5 deletions
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, lib, makeWrapper, gnupg, coreutils, utillinux, unixtools }:
|
||||
{ stdenv, lib, makeWrapper, gnupg, coreutils, util-linux, unixtools }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "sops-init-gpg-key";
|
||||
|
@ -12,7 +12,7 @@ stdenv.mkDerivation {
|
|||
install -m755 -D $src $out/bin/sops-init-gpg-key
|
||||
wrapProgram $out/bin/sops-init-gpg-key \
|
||||
--prefix PATH : ${lib.makeBinPath [
|
||||
coreutils utillinux gnupg unixtools.hostname
|
||||
coreutils util-linux gnupg unixtools.hostname
|
||||
]}
|
||||
'';
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ pkgs ? import <nixpkgs> {} }:
|
||||
pkgs.mkShell {
|
||||
nativeBuildInputs = with pkgs; [ go delve utillinux gnupg ];
|
||||
nativeBuildInputs = with pkgs; [ go delve util-linux gnupg ];
|
||||
}
|
||||
|
|
|
@ -7,7 +7,7 @@ in pkgs.stdenv.mkDerivation {
|
|||
nativeBuildInputs = with pkgs; [
|
||||
bashInteractive
|
||||
gnupg
|
||||
utillinux
|
||||
util-linux
|
||||
nix
|
||||
sopsPkgs.sops-pgp-hook-test
|
||||
] ++ pkgs.lib.optional (pkgs.stdenv.isLinux) sopsPkgs.sops-install-secrets.unittest;
|
||||
|
|
|
@ -5,7 +5,7 @@ pkgs.mkShell {
|
|||
go
|
||||
delve
|
||||
gnupg
|
||||
utillinux
|
||||
util-linux
|
||||
nixFlakes
|
||||
golangci-lint
|
||||
];
|
||||
|
|
Loading…
Add table
Reference in a new issue