nixpkgs/pkgs/development/libraries/haskell/syb/0.3.nix
Peter Simons 5ca8bc5be3 haskell-syb: revert removal of versions 0.2.2 and 0.3
Apparently, these versions weren't as obsolete as I thought.

svn path=/nixpkgs/trunk/; revision=32909
2012-03-08 18:53:51 +00:00

18 lines
467 B
Nix

{ cabal }:
cabal.mkDerivation (self: {
pname = "syb";
version = "0.3";
sha256 = "1gnqw76zy7xvlabhbyk8hml88hpz2igf7b3mz2ic091f77qkkch7";
meta = {
homepage = "http://www.cs.uu.nl/wiki/GenericProgramming/SYB";
description = "Scrap Your Boilerplate";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})