haskellPackages.neuron: Fix build

This commit is contained in:
Malte Brandy
2020-08-18 23:58:59 +02:00
parent 019780631c
commit fe868f7435
3 changed files with 28 additions and 20 deletions
+23
View File
@@ -133316,6 +133316,29 @@ self: {
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) lua5_3;};
"hslua_1_1_2" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, lua5_3
, mtl, QuickCheck, quickcheck-instances, tasty, tasty-hunit
, tasty-quickcheck, text
}:
mkDerivation {
pname = "hslua";
version = "1.1.2";
sha256 = "1cv4lwr91ckscwm2jksrg29ka1z32974xgkcgmna4ibpyjwkslbl";
configureFlags = [ "-fsystem-lua" "-f-use-pkgconfig" ];
libraryHaskellDepends = [
base bytestring containers exceptions mtl text
];
librarySystemDepends = [ lua5_3 ];
testHaskellDepends = [
base bytestring containers exceptions mtl QuickCheck
quickcheck-instances tasty tasty-hunit tasty-quickcheck text
];
description = "Bindings to Lua, an embeddable scripting language";
license = stdenv.lib.licenses.mit;
hydraPlatforms = stdenv.lib.platforms.none;
}) {inherit (pkgs) lua5_3;};
"hslua_1_2_0" = callPackage
({ mkDerivation, base, bytestring, containers, exceptions, lua5_3
, mtl, QuickCheck, quickcheck-instances, tasty, tasty-hunit