nixpkgs/pkgs/development/libraries/haskell/nixos-types/default.nix
Peter Simons 7ccb9f141a haskell-nixos-types: updated to version 1.1
svn path=/nixpkgs/trunk/; revision=28827
2011-08-26 10:29:11 +00:00

19 lines
532 B
Nix

{ cabal, regexPosix }:
cabal.mkDerivation (self: {
pname = "nixos-types";
version = "1.1";
sha256 = "0vnlhq2pjnslq1h9h3lyaxw604s3zdhs7k8hfr35m178rdm3a5az";
buildDepends = [ regexPosix ];
meta = {
homepage = "http://github.com/haskell4nix/nixos-types";
description = "Data types representing the Nix language";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})