Merge pull request #3319 from luke-clifton/master

Added cgrep utility.
This commit is contained in:
Aycan iRiCAN 2014-07-19 11:43:06 +03:00
commit bfe2e05925
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ cabal, ansiTerminal, cmdargs, dlist, filepath, regexPosix, safe
, split, stm, stringsearch, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "cgrep";
version = "6.4.3.1";
sha256 = "0pqifapjgazz7wiydc775i4f6iixq8v87rzjgvvymdbdsn0sfa0r";
isLibrary = false;
isExecutable = true;
buildDepends = [
ansiTerminal cmdargs dlist filepath regexPosix safe split stm
stringsearch unorderedContainers
];
meta = {
homepage = "http://awgn.github.io/cgrep/";
description = "Command line tool";
license = self.stdenv.lib.licenses.gpl2;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -379,6 +379,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
cgi_3001_1_8_5 = callPackage ../development/libraries/haskell/cgi/3001.1.8.5.nix {};
cgi = self.cgi_3001_1_8_5;
cgrep = callPackage ../development/libraries/haskell/cgrep {};
charset = callPackage ../development/libraries/haskell/charset {};
Chart = callPackage ../development/libraries/haskell/Chart {};