3e10ee5c92
* haskell-dataenc: updated to version 0.14.0.2 * haskell-fclabels: updated to version 1.0.1 svn path=/nixpkgs/trunk/; revision=28574
18 lines
502 B
Nix
18 lines
502 B
Nix
{ cabal, haskeline, mtl, Shellac }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Shellac-haskeline";
|
|
version = "0.2.0.1";
|
|
sha256 = "1xvs2ni83yyf7rx3ikmn2bkx20fyj03d03crqyyfw28mikhgv5br";
|
|
buildDepends = [ haskeline mtl Shellac ];
|
|
meta = {
|
|
description = "Haskeline backend module for Shellac";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|