about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorMichael Fellinger <michael.fellinger@iohk.io>2020-02-27 10:30:46 +0100
committerMichael Fellinger <michael.fellinger@iohk.io>2020-02-27 10:30:46 +0100
commit07fc3ce302cec8d75196de4b58de45e9e741ad2e (patch)
tree93f1eb80c77225fef20b0d6b20eeae9e6c6a339d /pkgs/development/tools
parent39ed5ff74c17b8f494c41e2d556483b2bd08f852 (diff)
downloadnixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar.gz
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar.bz2
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar.lz
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar.xz
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.tar.zst
nixlib-07fc3ce302cec8d75196de4b58de45e9e741ad2e.zip
vaultenv: 0.8.0 -> 0.13.0
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/haskell/vaultenv/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/development/tools/haskell/vaultenv/default.nix b/pkgs/development/tools/haskell/vaultenv/default.nix
index 1eb8bf75cdfb..6c339bf31b56 100644
--- a/pkgs/development/tools/haskell/vaultenv/default.nix
+++ b/pkgs/development/tools/haskell/vaultenv/default.nix
@@ -2,15 +2,15 @@
 , directory, hpack, hspec, hspec-discover, hspec-expectations
 , http-client, http-conduit, lens, lens-aeson, megaparsec, mtl
 , optparse-applicative, parser-combinators, retry, stdenv, text
-, unix, unordered-containers, utf8-string, fetchzip
+, unix, unordered-containers, utf8-string, fetchzip, dotenv
 }:
 mkDerivation rec {
   pname = "vaultenv";
-  version = "0.8.0";
+  version = "0.13.0";
 
   src = fetchzip {
     url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz";
-    sha256 = "04hrwyy7gsybdwljrks4ym3pshqk1i43f8wpirjx7b0dfjgsd2l5";
+    sha256 = "0kz5p57fq855mhbqrpb737sqrax9cdcyh2g57460hc8fyvs97lq0";
   };
 
   buildTools = [ hpack ];
@@ -21,6 +21,7 @@ mkDerivation rec {
     async base bytestring connection containers http-client
     http-conduit lens lens-aeson megaparsec mtl optparse-applicative
     parser-combinators retry text unix unordered-containers utf8-string
+    dotenv
   ];
   testHaskellDepends = [
     async base bytestring connection containers directory hspec
@@ -32,7 +33,5 @@ mkDerivation rec {
   homepage = "https://github.com/channable/vaultenv#readme";
   description = "Runs processes with secrets from HashiCorp Vault";
   license = stdenv.lib.licenses.bsd3;
-  maintainers = with stdenv.lib.maintainers; [ lnl7 ];
-  hydraPlatforms = [];
-  broken = true;  # does not compile any longer
+  maintainers = with stdenv.lib.maintainers; [ lnl7 manveru ];
 }