haskell: configuration-ghc-8.0.x.nix: keep inline-c at 0.5.6.1

This commit is contained in:
Bas van Dijk
2018-01-01 22:50:01 +01:00
parent e5fab33efd
commit cc9722b638
3 changed files with 45 additions and 0 deletions
@@ -113707,6 +113707,34 @@ self: {
hydraPlatforms = stdenv.lib.platforms.none;
}) {};
"inline-c_0_5_6_1" = callPackage
({ mkDerivation, ansi-wl-pprint, base, binary, bytestring
, containers, cryptohash, directory, filepath, gsl, gslcblas
, hashable, hspec, mtl, parsec, parsers, QuickCheck, raw-strings-qq
, regex-posix, stdenv, template-haskell, transformers
, unordered-containers, vector
}:
mkDerivation {
pname = "inline-c";
version = "0.5.6.1";
sha256 = "0kpbwrri9idllwd7gfamghrdrz16zqjphmb3cp5nq160dxz73brd";
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [
ansi-wl-pprint base binary bytestring containers cryptohash
directory filepath hashable mtl parsec parsers QuickCheck
template-haskell transformers unordered-containers vector
];
executableSystemDepends = [ gsl gslcblas ];
testHaskellDepends = [
ansi-wl-pprint base containers hashable hspec parsers QuickCheck
raw-strings-qq regex-posix template-haskell transformers
unordered-containers vector
];
description = "Write Haskell source files including C code inline. No FFI required.";
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) gsl; gslcblas = null;};
"inline-c" = callPackage
({ mkDerivation, ansi-wl-pprint, base, bytestring, containers, gsl
, gslcblas, hashable, hspec, mtl, parsec, parsers, QuickCheck
@@ -113733,6 +113761,18 @@ self: {
license = stdenv.lib.licenses.mit;
}) {inherit (pkgs) gsl; gslcblas = null;};
"inline-c-cpp_0_1_0_0" = callPackage
({ mkDerivation, base, inline-c, stdenv, template-haskell }:
mkDerivation {
pname = "inline-c-cpp";
version = "0.1.0.0";
sha256 = "0iba77p2ncxbg5sb4ks8f3lgp6zdnjhzvrr2ap3yg49is5b9f5rf";
libraryHaskellDepends = [ base inline-c template-haskell ];
testHaskellDepends = [ base ];
description = "Lets you embed C++ code into Haskell";
license = stdenv.lib.licenses.mit;
}) {};
"inline-c-cpp" = callPackage
({ mkDerivation, base, hspec, inline-c, safe-exceptions
, template-haskell