about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
blob: c31f0e5d2898a5fed383baeae72f82b480051ec2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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
    ];
  };
})