add shell.nix

main
Jörg Thalheim 2 years ago
parent 42f4092d84
commit da1f3210f3
No known key found for this signature in database

@ -4,11 +4,6 @@ buildGoModule {
name = "systemd-vaultd"; name = "systemd-vaultd";
src = ./.; src = ./.;
vendorSha256 = null; vendorSha256 = null;
checkInputs = [
python3.pkgs.pytest
golangci-lint
vault
];
meta = with lib; { meta = with lib; {
description = "A proxy for secrets between systemd services and vault"; description = "A proxy for secrets between systemd services and vault";
homepage = "https://github.com/numtide/systemd-vaultd"; homepage = "https://github.com/numtide/systemd-vaultd";
@ -17,9 +12,3 @@ buildGoModule {
platforms = platforms.unix; platforms = platforms.unix;
}; };
} }
#mkShell {
# nativeBuildInputs = [
# go
# hivemind
# ];
#}

@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
buildInputs = [
python3.pkgs.pytest
golangci-lint
vault
systemd
hivemind
go
];
}
Loading…
Cancel
Save