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

cabal.mkDerivation (self: {
  pname = "pathtype";
  version = "0.5.2";
  sha256 = "0rbmq6kzz2l07q9a5k888scpn62hnw2hmzz4ysprhfgdnn5b2cvi";
  buildDepends = [ QuickCheck ];
  meta = {
    homepage = "http://code.haskell.org/pathtype";
    description = "Type-safe replacement for System.FilePath etc";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})