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

cabal.mkDerivation (self: {
  pname = "path-pieces";
  version = "0.1.3";
  sha256 = "03x9kfcaz1zsdpdzs05pcl0hv4hffgsl2js8xiy5slba6n841v4l";
  buildDepends = [ text time ];
  testDepends = [ 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 ];
  };
})