summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/Shellac/Shellac-haskeline.nix
blob: 37bf25a9a9dd759e7d38dedae0af4b438ab2c8fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, Shellac, haskeline, mtl }:

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