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

cabal.mkDerivation (self : {
  pname = "Shellac";
  version = "0.9.5.1";
  sha256 = "19fpbh5ijy9xc3rhl9qwyan8jfnz9nsqvnsjxb7kkb7l2bpz4qfp";
  propagatedBuildInputs = [ 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.simons ];
  };
})