fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ mkDerivation, fetchzip, async, base, bytestring, hpack, http-conduit
2, lens, lens-aeson, optparse-applicative, retry, stdenv, text, unix
3, unordered-containers, utf8-string
4}:
5
6mkDerivation rec {
7 pname = "vaultenv";
8 version = "0.5.3";
9
10 src = fetchzip {
11 url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz";
12 sha256 = "1kxq2pp8l8xf7xwjyd9cwyi7z192013s6psq5fk8jrkkhrk8z3li";
13 };
14
15 buildTools = [ hpack ];
16 preConfigure = "hpack .";
17
18 isLibrary = false;
19 isExecutable = true;
20 executableHaskellDepends = [
21 async base bytestring http-conduit lens lens-aeson
22 optparse-applicative retry text unix unordered-containers
23 utf8-string
24 ];
25 homepage = "https://github.com/channable/vaultenv";
26 description = "Runs processes with secrets from HashiCorp Vault";
27 license = stdenv.lib.licenses.bsd3;
28 maintainers = with stdenv.lib.maintainers; [ lnl7 ];
29}