forked from mirrors/nixpkgs
haskellPackages.language-javascript_0_7_0_0: add for use with purescript
This commit is contained in:
parent
ea8a637c66
commit
1269a421d1
|
@ -118,6 +118,7 @@ extra-packages:
|
|||
- happy == 1.19.12 # for ghcjs
|
||||
- hinotify == 0.3.9 # for xmonad-0.26: https://github.com/kolmodin/hinotify/issues/29
|
||||
- immortal == 0.2.2.1 # required by Hasura 1.3.1, 2020-08-20
|
||||
- language-javascript == 0.7.0.0 # required by purescript
|
||||
- mmorph == 1.1.3 # Newest working version of mmorph on ghc 8.6.5. needed for hls
|
||||
- network == 2.6.3.1 # required by pkgs/games/hedgewars/default.nix, 2020-11-15
|
||||
- optparse-applicative < 0.16 # needed for niv-0.2.19
|
||||
|
|
|
@ -162550,6 +162550,28 @@ self: {
|
|||
broken = true;
|
||||
}) {};
|
||||
|
||||
"language-javascript_0_7_0_0" = callPackage
|
||||
({ mkDerivation, alex, array, base, blaze-builder, bytestring
|
||||
, Cabal, containers, happy, hspec, mtl, QuickCheck, text
|
||||
, utf8-light, utf8-string
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "language-javascript";
|
||||
version = "0.7.0.0";
|
||||
sha256 = "15bpqpkjf2y3fk8wff9zlnkpsjc63bnbvhlkxrs9alj0bikq17nk";
|
||||
libraryHaskellDepends = [
|
||||
array base blaze-builder bytestring containers mtl text utf8-string
|
||||
];
|
||||
libraryToolDepends = [ alex happy ];
|
||||
testHaskellDepends = [
|
||||
array base blaze-builder bytestring Cabal containers hspec mtl
|
||||
QuickCheck utf8-light utf8-string
|
||||
];
|
||||
description = "Parser for JavaScript";
|
||||
license = lib.licenses.bsd3;
|
||||
hydraPlatforms = lib.platforms.none;
|
||||
}) {};
|
||||
|
||||
"language-javascript" = callPackage
|
||||
({ mkDerivation, alex, array, base, blaze-builder, bytestring
|
||||
, Cabal, containers, happy, hspec, mtl, QuickCheck, text
|
||||
|
|
Loading…
Reference in a new issue