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

gcodehs: 0.1.2.0

parent 08ed3e5b
1 merge request!2gcodehs: 0.1.2.0
Pipeline #2495 passed with stages
in 16 minutes and 51 seconds
......@@ -7,9 +7,14 @@ let packages =
, clash-lib = H.callHackage "clash-lib" "1.8.1"
, clash-prelude = H.callHackage "clash-prelude" "1.8.1"
, concurrent-supply = H.callHackage "concurrent-supply" "0.1.8"
, gcodehs = H.callHackage "gcodehs" "0.1.2.0"
, ghc-typelits-extra = H.callHackage "ghc-typelits-extra" "0.4.5"
, implicit = H.callHackage "implicit" "0.4.0.0"
, infinite-list = H.callHackage "infinite-list" "0.1"
, pipes-attoparsec = H.callHackage "pipes-attoparsec" "0.6.0"
, pipes-bytestring = H.callHackage "pipes-bytestring" "2.1.7"
, pipes-group = H.callHackage "pipes-group" "1.0.12"
, pipes-parse = H.callHackage "pipes-parse" "3.0.9"
, prettyprinter-interp = H.callHackage "prettyprinter-interp" "0.2.0.0"
}
......
......@@ -18,6 +18,10 @@
, mapValue =
"b4dfdcb5978ea4872b67179990fe06be9b9e46be966a3217af3fc0e993204f62"
}
, { mapKey = "gcodehs"
, mapValue =
"d1749a5a3fecef6035f1ac832daef058fac3eb1816208d1bcb749042a198b2c8"
}
, { mapKey = "ghc-typelits-extra"
, mapValue =
"7b71e464555005470fbd5a29f04663d73162f8c8e03bc31e44c2d2d0679dd0f7"
......@@ -30,6 +34,22 @@
, mapValue =
"e8b61b397b271279da684115d6497702a722441a91b41205d3bb524559864016"
}
, { mapKey = "pipes-attoparsec"
, mapValue =
"3dbc70b0e40b668937bc2f8f6935454bae0de86424e76a42828ca29e78101a87"
}
, { mapKey = "pipes-bytestring"
, mapValue =
"c32e99449e73d606a5ede615fcf7c2bd0c50671671936ce2f64c40be24c528d5"
}
, { mapKey = "pipes-group"
, mapValue =
"c0cbbad939f2cd80f30ab2f1404a298af12fa2c23bea07465ca61177befe8690"
}
, { mapKey = "pipes-parse"
, mapValue =
"70d515d42eecf24bf24bc0c4986f86deff6d8819b4f69c2405b8c220c59b8e1d"
}
, { mapKey = "prettyprinter-interp"
, mapValue =
"497ef67bcdad9c0ab717b5da15967cf12256eb6913405358a298865fe8ad99c0"
......
......@@ -11,12 +11,22 @@ final: prev: with pkgs.haskell.lib; {
concurrent-supply = final.callPackage (./pkgs/concurrent-supply.nix) { };
gcodehs = final.callPackage (./pkgs/gcodehs.nix) { };
ghc-typelits-extra = final.callPackage (./pkgs/ghc-typelits-extra.nix) { };
implicit = final.callPackage (./pkgs/implicit.nix) { };
infinite-list = final.callPackage (./pkgs/infinite-list.nix) { };
pipes-attoparsec = final.callPackage (./pkgs/pipes-attoparsec.nix) { };
pipes-bytestring = final.callPackage (./pkgs/pipes-bytestring.nix) { };
pipes-group = final.callPackage (./pkgs/pipes-group.nix) { };
pipes-parse = final.callPackage (./pkgs/pipes-parse.nix) { };
prettyprinter-interp = final.callPackage (./pkgs/prettyprinter-interp.nix) { };
}
{ mkDerivation, ansi-wl-pprint, attoparsec, base, bytestring
, containers, double-conversion, hspec, hspec-discover, lib
, optparse-applicative, pipes, pipes-attoparsec, pipes-bytestring
, pipes-parse, pipes-safe, template-haskell, text, transformers
}:
mkDerivation {
pname = "gcodehs";
version = "0.1.2.0";
sha256 = "cd3f08a490e7ff8350f34899ba28c9d30fe9852caa6dabcea2d9442ada044024";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
ansi-wl-pprint attoparsec base bytestring containers
double-conversion pipes pipes-attoparsec pipes-bytestring
pipes-parse pipes-safe template-haskell text transformers
];
executableHaskellDepends = [
attoparsec base bytestring containers double-conversion
optparse-applicative pipes pipes-safe text transformers
];
testHaskellDepends = [
ansi-wl-pprint attoparsec base bytestring hspec hspec-discover text
];
testToolDepends = [ hspec-discover ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/distrap/gcodehs";
description = "GCode processor";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, HUnit, attoparsec, base, bytestring, lib, mmorph
, pipes, pipes-parse, tasty, tasty-hunit, text, transformers
}:
mkDerivation {
pname = "pipes-attoparsec";
version = "0.6.0";
sha256 = "8650db43bbc74817bdf60c44c245999b6d44c04db440045cde1b4eca2193e5d1";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
attoparsec base bytestring pipes pipes-parse text transformers
];
testHaskellDepends = [
attoparsec base HUnit mmorph pipes pipes-parse tasty tasty-hunit
text transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/k0001/pipes-attoparsec";
description = "Attoparsec and Pipes integration";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, bytestring, lib, pipes, pipes-group
, pipes-parse, stringsearch, transformers
}:
mkDerivation {
pname = "pipes-bytestring";
version = "2.1.7";
sha256 = "6c77863e8ad809f3b86e9e0cf8c553056a8ef12bb2691f8031c5917d0b090732";
revision = "3";
editedCabalFile = "0a5mp98prbpn5pqpab0h3xinhh9vnjqhlss44zq9dbvxw14agxak";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base bytestring pipes pipes-group pipes-parse stringsearch
transformers
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "ByteString support for pipes";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, doctest, free, lens-family-core, lib, pipes
, pipes-parse, transformers
}:
mkDerivation {
pname = "pipes-group";
version = "1.0.12";
sha256 = "1373e89fbeb127c31461042cdda848da2048eda2700ddbd872d444af87745ac7";
revision = "9";
editedCabalFile = "1i0l182q4gxq29g5w8iv3ywq68dq3gcyhjybfrih0q0cnyz8zxlc";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base free pipes pipes-parse transformers
];
testHaskellDepends = [ base doctest lens-family-core ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Group streams into substreams";
license = lib.licenses.bsd3;
broken = false;
}
\ No newline at end of file
{ mkDerivation, base, lib, pipes, transformers }:
mkDerivation {
pname = "pipes-parse";
version = "3.0.9";
sha256 = "a3973f9b01d68cce75d6c5b049fe5dbff6d4f6753019349ccff5cfad82048d15";
revision = "2";
editedCabalFile = "0dil8dqjx4l1d065rcixhbri1j40ppip6kfl22kxgyx96hz0vzfh";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base pipes transformers ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = true;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Parsing infrastructure for the pipes ecosystem";
license = lib.licenses.bsd3;
broken = false;
}
\ 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