vaultenv: 0.5.3 -> 0.8.0

This commit is contained in:
Luke Clifton 2018-09-12 11:40:04 +08:00
parent a25dcb6607
commit 5dc1796a6f

View File

@ -1,28 +1,35 @@
{ mkDerivation, fetchzip, async, base, bytestring, hpack, http-conduit { mkDerivation, async, base, bytestring, connection, containers
, lens, lens-aeson, optparse-applicative, retry, stdenv, text, unix , directory, hpack, hspec, hspec-discover, hspec-expectations
, unordered-containers, utf8-string , http-client, http-conduit, lens, lens-aeson, megaparsec, mtl
, optparse-applicative, parser-combinators, retry, stdenv, text
, unix, unordered-containers, utf8-string, fetchzip
}: }:
mkDerivation rec { mkDerivation rec {
pname = "vaultenv"; pname = "vaultenv";
version = "0.5.3"; version = "0.8.0";
src = fetchzip { src = fetchzip {
url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz"; url = "https://github.com/channable/vaultenv/archive/v${version}.tar.gz";
sha256 = "1kxq2pp8l8xf7xwjyd9cwyi7z192013s6psq5fk8jrkkhrk8z3li"; sha256 = "04hrwyy7gsybdwljrks4ym3pshqk1i43f8wpirjx7b0dfjgsd2l5";
}; };
buildTools = [ hpack ]; buildTools = [ hpack ];
preConfigure = "hpack .";
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
executableHaskellDepends = [ executableHaskellDepends = [
async base bytestring http-conduit lens lens-aeson async base bytestring connection containers http-client
optparse-applicative retry text unix unordered-containers http-conduit lens lens-aeson megaparsec mtl optparse-applicative
utf8-string parser-combinators retry text unix unordered-containers utf8-string
]; ];
homepage = "https://github.com/channable/vaultenv"; testHaskellDepends = [
async base bytestring connection containers directory hspec
hspec-discover hspec-expectations http-client http-conduit lens
lens-aeson megaparsec mtl optparse-applicative parser-combinators
retry text unix unordered-containers utf8-string
];
preConfigure = "hpack";
homepage = "https://github.com/channable/vaultenv#readme";
description = "Runs processes with secrets from HashiCorp Vault"; description = "Runs processes with secrets from HashiCorp Vault";
license = stdenv.lib.licenses.bsd3; license = stdenv.lib.licenses.bsd3;
maintainers = with stdenv.lib.maintainers; [ lnl7 ]; maintainers = with stdenv.lib.maintainers; [ lnl7 ];