mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
commit
bfe2e05925
21
pkgs/development/libraries/haskell/cgrep/default.nix
Normal file
21
pkgs/development/libraries/haskell/cgrep/default.nix
Normal 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;
|
||||
};
|
||||
})
|
@ -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 {};
|
||||
|
Loading…
Reference in New Issue
Block a user