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

cabal.mkDerivation (self: {
  pname = "nixos-types";
  version = "1.2";
  sha256 = "140qk6wqq87qfk471cnhrg135fnqv0vfmfxh8kj14ar2kxvzrr8w";
  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
    ];
  };
})