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

cabal.mkDerivation (self: {
  pname = "haskell-src";
  version = "1.0.1.5";
  sha256 = "1ay3i2sbrp0pzg6fagg8gqrwq5lcnm5jb5sr11frbk274a82cdwz";
  buildDepends = [ syb ];
  buildTools = [ happy ];
  meta = {
    description = "Support for manipulating Haskell source code";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})