hackage-packages.nix: fix syntax error
This commit is contained in:
parent
4b343f84f7
commit
e9f62d890c
|
@ -110584,18 +110584,18 @@ self: {
|
||||||
}) {};
|
}) {};
|
||||||
|
|
||||||
"llvm-ffi" = callPackage
|
"llvm-ffi" = callPackage
|
||||||
({ mkDerivation, base, enumset, llvm-3.7 }:
|
({ mkDerivation, base, enumset, llvm }:
|
||||||
mkDerivation {
|
mkDerivation {
|
||||||
pname = "llvm-ffi";
|
pname = "llvm-ffi";
|
||||||
version = "3.7.0";
|
version = "3.7.0";
|
||||||
sha256 = "1d9f2ef4df9d031422b0ad887bcb3bbea041f61e8b105a583e6496168cea83f7";
|
sha256 = "1d9f2ef4df9d031422b0ad887bcb3bbea041f61e8b105a583e6496168cea83f7";
|
||||||
libraryHaskellDepends = [ base enumset ];
|
libraryHaskellDepends = [ base enumset ];
|
||||||
libraryPkgconfigDepends = [ llvm-3.7 ];
|
libraryPkgconfigDepends = [ llvm ];
|
||||||
homepage = "http://haskell.org/haskellwiki/LLVM";
|
homepage = "http://haskell.org/haskellwiki/LLVM";
|
||||||
description = "FFI bindings to the LLVM compiler toolkit";
|
description = "FFI bindings to the LLVM compiler toolkit";
|
||||||
license = stdenv.lib.licenses.bsd3;
|
license = stdenv.lib.licenses.bsd3;
|
||||||
hydraPlatforms = stdenv.lib.platforms.none;
|
hydraPlatforms = stdenv.lib.platforms.none;
|
||||||
}) {"llvm-3.7" = null;};
|
}) {"llvm" = null;};
|
||||||
|
|
||||||
"llvm-ffi-tools" = callPackage
|
"llvm-ffi-tools" = callPackage
|
||||||
({ mkDerivation, base, bytestring, containers, regex-posix
|
({ mkDerivation, base, bytestring, containers, regex-posix
|
||||||
|
|
Loading…
Reference in New Issue