arion: 0.1.2.0 -> 0.1.3.0

This commit is contained in:
Robert Hensing
2021-06-04 14:02:39 +02:00
committed by sterni
parent e829bef3ca
commit f52ff6ed96
2 changed files with 39 additions and 0 deletions
@@ -0,0 +1,27 @@
{ mkDerivation, aeson, aeson-pretty, async, base, bytestring
, directory, hspec, lens, lens-aeson, lib, optparse-applicative
, process, protolude, QuickCheck, temporary, text, unix
}:
mkDerivation {
pname = "arion-compose";
version = "0.1.3.0";
sha256 = "9e18448f8489303f0d9fee020ad1ceb896f4e71eedb537c0c0ef0f1f3ade80df";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = true;
libraryHaskellDepends = [
aeson aeson-pretty async base bytestring directory lens lens-aeson
process protolude temporary text unix
];
executableHaskellDepends = [
aeson aeson-pretty async base bytestring directory lens lens-aeson
optparse-applicative process protolude temporary text unix
];
testHaskellDepends = [
aeson aeson-pretty async base bytestring directory hspec lens
lens-aeson process protolude QuickCheck temporary text unix
];
homepage = "https://github.com/hercules-ci/arion#readme";
description = "Run docker-compose with help from Nix/NixOS";
license = lib.licenses.asl20;
}