1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

rematch: add haskell package

This commit is contained in:
Nikolay Amiantov 2014-10-30 00:47:34 +03:00 committed by Peter Simons
parent d88c5eed1d
commit a909a12c2d
2 changed files with 18 additions and 0 deletions

View file

@ -0,0 +1,16 @@
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
{ cabal, hspec, HUnit }:
cabal.mkDerivation (self: {
pname = "rematch";
version = "0.2.0.0";
sha256 = "0law4al9hzn9qljfm8rwgmb15pzpcs8i44v1l6279977q0lxx5pr";
testDepends = [ hspec HUnit ];
doCheck = false;
meta = {
description = "A simple api for matchers";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -2227,6 +2227,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
regularXmlpickler = callPackage ../development/libraries/haskell/regular-xmlpickler {};
rematch = callPackage ../development/libraries/haskell/rematch {};
remote = callPackage ../development/libraries/haskell/remote {};
repa = callPackage ../development/libraries/haskell/repa {};