b1ef3e6e36
* haskell-mkcabal: updated to version 1.0.0 * haskell-ghc-syb-utils: updated to version 0.2.1.0 * haskell-darcs: updated to version 2.5.2 svn path=/nixpkgs/trunk/; revision=28449
18 lines
497 B
Nix
18 lines
497 B
Nix
{ cabal, Shellac, readline }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Shellac-readline";
|
|
version = "0.9";
|
|
sha256 = "3edffecf2225c199f0a4df55e3685f7deee47755ae7f8d03f5da7fac3c2ab878";
|
|
buildDepends = [ Shellac readline ];
|
|
meta = {
|
|
description = "Readline 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
|
|
];
|
|
};
|
|
})
|