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

cabal.mkDerivation (self: {
  pname = "syb";
  version = "0.1.0.1";
  sha256 = "08nf4id26s5iasxzdy5jds6h87fy3a55zgw0zrig4dg6difmwjp3";
  meta = {
    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
    ];
  };
})