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