1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2025-03-31 04:14:37 +00:00

add project-wide shell.nix

This commit is contained in:
Jörg Thalheim 2020-07-12 17:06:59 +01:00
parent 38e71e351c
commit cbf6c6b93a
No known key found for this signature in database
GPG key ID: 003F2096411B5F92
3 changed files with 12 additions and 12 deletions

View file

@ -3,8 +3,6 @@ buildGoModule {
pname = "sops-install-secrets";
version = "0.0.1";
hardeningDisable = [ "all" ];
src = ../..;
subPackages = [ "pkgs/sops-install-secrets" ];

View file

@ -1,10 +0,0 @@
with import <nixpkgs> {};
mkShell {
nativeBuildInputs = [
bashInteractive
go
delve
gnupg
];
hardeningDisable = [ "all" ];
}

12
shell.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
bashInteractive
go
delve
gnupg
utillinux
];
# delve does not compile with hardening enabled
hardeningDisable = [ "all" ];
}