nixpkgs/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
Peter Simons ac69747aa8 Regenerated all Haskell packages with the latest version of cabal2nix.
svn path=/nixpkgs/trunk/; revision=32292
2012-02-14 17:00:37 +00:00

18 lines
515 B
Nix

{ cabal, Cabal, haskeline, mtl, Shellac }:
cabal.mkDerivation (self: {
pname = "Shellac-haskeline";
version = "0.2.0.1";
sha256 = "1xvs2ni83yyf7rx3ikmn2bkx20fyj03d03crqyyfw28mikhgv5br";
buildDepends = [ Cabal 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
];
};
})