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

cabal.mkDerivation (self: {
  pname = "yap";
  version = "0.0";
  sha256 = "0cjsmf9p220fb9yf2i81xspa3rpnlln3hfb9yc5x6xbcc6py0nw5";
  meta = {
    description = "yet another prelude - a simplistic refactoring with algebraic classes";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})