Unverified Commit a341626f authored by Wolfgang Walther's avatar Wolfgang Walther Committed by GitHub
Browse files

vaultenv: 0.16.0 -> 0.17.0 (#389800)

parents 80a06f08 f1c8046f
Loading
Loading
Loading
Loading
+21 −33
Original line number Diff line number Diff line
{
  mkDerivation,
  HsOpenSSL,
  QuickCheck,
  aeson,
  async,
  base,
  bytestring,
  connection,
  containers,
  crypton-connection,
  directory,
  hpack,
  hspec,
  hspec-discover,
  hspec-expectations,
  http-client,
  http-client-openssl,
  http-conduit,
  lens,
  lens-aeson,
  lib,
  megaparsec,
  mtl,
  network-uri,
  optparse-applicative,
  parser-combinators,
  retry,
  lib,
  quickcheck-instances,
  retry,
  text,
  unix,
  unordered-containers,
  utf8-string,
  fetchFromGitHub,
  dotenv,
  fetchFromGitHub,
}:
mkDerivation rec {
  pname = "vaultenv";
  version = "0.16.0";
  version = "0.17.0";

  src = fetchFromGitHub {
    owner = "channable";
    repo = "vaultenv";
    rev = "v${version}";
    sha256 = "sha256-EPu4unzXIg8naFUEZwbJ2VJXD/TeCiKzPHCXnRkdyBE=";
    hash = "sha256-Jb+Y/Cbapw2ZCXMwXMw1hsy0vT/K8mM/A/Z1all7y+A=";
  };

  buildTools = [ hpack ];
@@ -49,17 +51,21 @@ mkDerivation rec {
  isLibrary = false;
  isExecutable = true;
  executableHaskellDepends = [
    HsOpenSSL
    aeson
    async
    base
    bytestring
    connection
    containers
    crypton-connection
    directory
    dotenv
    http-client
    http-client-openssl
    http-conduit
    lens
    lens-aeson
    megaparsec
    mtl
    network-uri
    optparse-applicative
    optparse-applicative
    parser-combinators
    retry
@@ -67,32 +73,14 @@ mkDerivation rec {
    unix
    unordered-containers
    utf8-string
    dotenv
  ];
  testHaskellDepends = [
    async
    base
    bytestring
    connection
    containers
  testHaskellDepends = executableHaskellDepends ++ [
    QuickCheck
    directory
    hspec
    hspec-discover
    hspec-expectations
    http-client
    http-conduit
    lens
    lens-aeson
    megaparsec
    mtl
    optparse-applicative
    parser-combinators
    retry
    quickcheck-instances
    text
    unix
    unordered-containers
    utf8-string
  ];
  preConfigure = "hpack";
  homepage = "https://github.com/channable/vaultenv#readme";