arion: 0.1.2.0 -> 0.1.3.0

This commit is contained in:
Robert Hensing 2021-06-03 22:36:30 +02:00 committed by sterni
parent e829bef3ca
commit f52ff6ed96
2 changed files with 39 additions and 0 deletions

View File

@ -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;
}

View File

@ -36,4 +36,16 @@ self: super: {
# Unofficial fork until PRs are merged https://github.com/pcapriotti/optparse-applicative/pulls/roberth
# cabal2nix --maintainer roberth https://github.com/hercules-ci/optparse-applicative.git > pkgs/development/misc/haskell/hercules-ci-optparse-applicative.nix
hercules-ci-optparse-applicative = self.callPackage ../misc/haskell/hercules-ci-optparse-applicative.nix {};
#
# Backports
#
# This file overrides packages in `hackage-packages.nix`.
# Backport arion, to support Podman instead of Docker, for those who need NixOS-based containers.
# Generated with:
# nix-shell -I nixpkgs=$PWD -p cabal-install -p cabal2nix --run 'cabal update; cabal2nix cabal://arion-compose > pkgs/applications/virtualization/arion/arion-compose.nix'
arion-compose = self.callPackage ../../applications/virtualization/arion/arion-compose.nix {};
}