diff --git a/horizon.dhall b/horizon.dhall index c4e8ec071c49c44ec2bafdffe524aafff6dcbeda..a4369e610cdbdf87c747fab3eff71acdb7bda55b 100644 --- a/horizon.dhall +++ b/horizon.dhall @@ -203,6 +203,7 @@ let packages = , composite-lens-extra = H.callHackage "composite-lens-extra" "0.1.0.0" , composite-tuple = H.callHackage "composite-tuple" "0.1.2.0" , composition-prelude = H.callHackage "composition-prelude" "3.0.0.2" + , concise = H.callHackage "concise" "0.1.0.1" , concurrent-extra = H.callHackage "concurrent-extra" "0.7.0.12" , concurrent-output = H.callHackage "concurrent-output" "1.10.16" , conduit-combinators = H.callHackage "conduit-combinators" "1.3.0" diff --git a/initial-packages.nix b/initial-packages.nix index 1f4ac6f91dac08a8a44f45e09edf72ee0fb4e20e..644705e0c795b5b13142a7c4de78355a2cf1bf7e 100644 --- a/initial-packages.nix +++ b/initial-packages.nix @@ -285,6 +285,8 @@ self: with pkgs.haskell.lib; { composition-prelude = self.callPackage (./pkgs/composition-prelude.nix) { }; + concise = self.callPackage (./pkgs/concise.nix) { }; + concurrent-extra = self.callPackage (./pkgs/concurrent-extra.nix) { }; concurrent-output = self.callPackage (./pkgs/concurrent-output.nix) { }; diff --git a/pkgs/concise.nix b/pkgs/concise.nix new file mode 100644 index 0000000000000000000000000000000000000000..f76d0a8a4212c9d43ae9b63dc27be816835898c5 --- /dev/null +++ b/pkgs/concise.nix @@ -0,0 +1,41 @@ +{ mkDerivation +, QuickCheck +, base +, bytestring +, lens +, lib +, quickcheck-instances +, tasty +, tasty-quickcheck +, text +}: +mkDerivation { + pname = "concise"; + version = "0.1.0.1"; + sha256 = "5c27df5a3e1fe820548e90abc4a0e326b6d0fb286218619aa22d3af90c7b9925"; + isLibrary = true; + isExecutable = false; + enableSeparateDataOutput = false; + libraryHaskellDepends = [ base bytestring lens text ]; + testHaskellDepends = [ + base + bytestring + lens + QuickCheck + quickcheck-instances + tasty + tasty-quickcheck + text + ]; + enableLibraryProfiling = true; + enableExecutableProfiling = true; + doHaddock = false; + jailbreak = true; + doCheck = false; + doBenchmark = false; + hyperlinkSource = false; + homepage = "https://github.com/frasertweedale/hs-concise"; + description = "Utilities for Control.Lens.Cons"; + license = lib.licenses.bsd3; + broken = false; +}