Skip to content
Snippets Groups Projects
Commit 91a7e776 authored by Daniel Firth's avatar Daniel Firth Committed by Raoul Hidalgo Charman
Browse files

operational: init at 0.2.4.2

parent ff6ecf10
No related merge requests found
......@@ -688,6 +688,7 @@ let packages =
, one-liner = H.callHackage "one-liner" "2.1"
, openapi3 = H.callHackage "openapi3" "3.2.2"
, openssl-streams = H.callHackage "openssl-streams" "1.2.3.0"
, operational = H.callHackage "operational" "0.2.4.2"
, optics-core = H.callHackage "optics-core" "0.4.1"
, optics-extra = H.callHackage "optics-extra" "0.4.2.1"
, optics-th = H.callHackage "optics-th" "0.4.1"
......
......@@ -1107,6 +1107,8 @@ self: with pkgs.haskell.lib; {
openssl-streams = self.callPackage (./pkgs/openssl-streams.nix) { };
operational = self.callPackage (./pkgs/operational.nix) { };
optics = self.callPackage (./pkgs/optics.nix) { };
optics-core = self.callPackage (./pkgs/optics-core.nix) { };
......
{ mkDerivation, base, lib, mtl, random, transformers }:
mkDerivation {
pname = "operational";
version = "0.2.4.2";
sha256 = "857da8b2b155a9f799c3f6eb34b158454ce7a0116a89f07d9fda05f1eadda6b7";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base mtl transformers ];
executableHaskellDepends = [ base mtl random ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://wiki.haskell.org/Operational";
description = "Implementation of difficult monads made easy with operational semantics";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment