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

cabal.mkDerivation (self: {
  pname = "Shellac";
  version = "0.9.5.1";
  sha256 = "19fpbh5ijy9xc3rhl9qwyan8jfnz9nsqvnsjxb7kkb7l2bpz4qfp";
  buildDepends = [ mtl ];
  meta = {
    homepage = "http://www.cs.princeton.edu/~rdockins/shellac/home/";
    description = "A framework for creating shell envinronments";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})