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

cabal.mkDerivation (self: {
  pname = "funcmp";
  version = "1.5";
  sha256 = "f68807833f39178c99877321f0f335cfde12a5c4b38e6c51f33f8cab94b9e12e";
  buildDepends = [ filepath ];
  meta = {
    homepage = "http://savannah.nongnu.org/projects/funcmp/";
    description = "Functional MetaPost";
    license = "GPL";
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})