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

cabal.mkDerivation (self : {
  pname = "ppm";
  version = "2009.5.13";
  sha256 = "9e390ca9a9e6e740fa71d2b72fa2c9c3d521118b0ebb35f10fabbbe543ecfb5b";
  propagatedBuildInputs = [mtl];
  meta = {
    license = "BSD";
    description = "a tiny PPM image generator";
    maintainer = [self.stdenv.lib.maintainers.andres];
  };
})