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

haskell-lexer: init at 1.1

parent f6eadddf
Branches
Tags
No related merge requests found
......@@ -342,6 +342,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hashable" "1.4.1.0"
, callHackage "hashing" "0.1.0.1"
, callHackage "hashtables" "1.3"
, callHackage "haskell-lexer" "1.1"
, callHackage "haskell-src-exts" "1.23.1"
, callHackage "haskell-src-meta" "0.8.11"
, callHackage "heaps" "0.4"
......
......@@ -489,6 +489,8 @@ self: with pkgs.haskell.lib; {
hashtables = self.callPackage (./pkgs/hashtables.nix) { };
haskell-lexer = self.callPackage (./pkgs/haskell-lexer.nix) { };
haskell-src-exts = self.callPackage (./pkgs/haskell-src-exts.nix) { };
haskell-src-meta = self.callPackage (./pkgs/haskell-src-meta.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "haskell-lexer";
version = "1.1";
sha256 = "313a15cc643322c8badd148867ce25ca1ffc191df9e7eeec5b10bc08c4b563d5";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/yav/haskell-lexer";
description = "A fully compliant Haskell 98 lexer";
license = lib.licenses.bsd3;
broken = false;
}
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