3
0
Fork 0
forked from mirrors/nixpkgs

Add meta.maintainer attribute to Haskell packages.

This commit is contained in:
Peter Simons 2012-07-16 11:36:35 +02:00
parent 36265e9c66
commit 0b0babffc5
3 changed files with 3 additions and 0 deletions

View file

@ -15,5 +15,6 @@ cabal.mkDerivation (self: {
description = "Backend for the persistent library using postgresql";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View file

@ -10,5 +10,6 @@ cabal.mkDerivation (self: {
description = "low-level binding to libpq";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})

View file

@ -14,5 +14,6 @@ cabal.mkDerivation (self: {
description = "Mid-Level PostgreSQL client library";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})