Skip to content
Snippets Groups Projects
Commit d41089dd authored by Daniel Firth's avatar Daniel Firth
Browse files

souffle-haskell: init at 3.5.0

parent 1ba673e4
No related merge requests found
......@@ -385,6 +385,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "singletons" "3.0.2"
, callHackage "some" "1.0.4"
, callHackage "sop-core" "0.5.0.1"
, callHackage "souffle-haskell" "3.5.0"
, callHackage "split" "0.2.3.3"
, callHackage "streaming-commons" "0.2.2.4"
, callHackage "string-interpolate" "0.3.1.2"
......
......@@ -467,6 +467,8 @@ final: prev: with pkgs.haskell.lib; {
sop-core = prev.callPackage (./pkgs/sop-core.nix) { };
souffle-haskell = prev.callPackage (./pkgs/souffle-haskell.nix) { };
split = prev.callPackage (./pkgs/split.nix) { };
streaming-commons = prev.callPackage (./pkgs/streaming-commons.nix) { };
......
{ mkDerivation, array, base, bytestring, criterion, deepseq
, directory, filepath, hedgehog, hspec, hspec-hedgehog, lib, mtl
, process, profunctors, temporary, text, text-short
, type-errors-pretty, vector
}:
mkDerivation {
pname = "souffle-haskell";
version = "3.5.0";
sha256 = "79c9fc06da1265be3668e9ff1d23d9814d4d47a067cdb3c4f1949bea384ac3e8";
libraryHaskellDepends = [
array base bytestring deepseq directory filepath mtl process
profunctors temporary text text-short type-errors-pretty vector
];
testHaskellDepends = [
array base directory hedgehog hspec hspec-hedgehog profunctors
temporary text text-short vector
];
benchmarkHaskellDepends = [ base criterion deepseq text vector ];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
homepage = "https://github.com/luc-tielen/souffle-haskell#README.md";
description = "Souffle Datalog bindings for Haskell";
license = lib.licenses.mit;
}
\ No newline at end of file
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