summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/path-pieces/default.nix
blob: 14b9f8d708131802b2979308645042987bd154bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, fileLocation, hspec, HUnit, QuickCheck, text, time }:

cabal.mkDerivation (self: {
  pname = "path-pieces";
  version = "0.1.2";
  sha256 = "1cxsa8lq1f2jf86iv6f17nraiav8k2vzjxln1y7z45qhcp1sbbaa";
  buildDepends = [ text time ];
  testDepends = [ fileLocation hspec HUnit QuickCheck text ];
  meta = {
    description = "Components of paths";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})