summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/singletons/default.nix
blob: c4074b9d62c34be621706450f5c9d64600e6827c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, Cabal, constraints, filepath, mtl, tasty, tastyGolden
, thDesugar
}:

cabal.mkDerivation (self: {
  pname = "singletons";
  version = "1.0";
  sha256 = "1rd1728wghhqlg2djd7az8i01rf4i3wwwcnz2v43a39jjvhlklkg";
  buildDepends = [ mtl thDesugar ];
  testDepends = [ Cabal constraints filepath tasty tastyGolden ];
  noHaddock = true;
  patches = self.stdenv.lib.optional self.stdenv.isDarwin ./test.patch;
  meta = {
    homepage = "http://www.cis.upenn.edu/~eir/packages/singletons";
    description = "A framework for generating singleton types";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.ocharles ];
  };
})