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

cabal.mkDerivation (self: {
  pname = "path-pieces";
  version = "0.1.0";
  sha256 = "12dgiq2pz94pwa5v5wv96ps0nl5w23r44nnp4lm4cdhl063c9w8d";
  buildDepends = [ Cabal text ];
  meta = {
    homepage = "http://github.com/snoyberg/path-pieces";
    description = "Components of paths";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [
      self.stdenv.lib.maintainers.andres
      self.stdenv.lib.maintainers.simons
    ];
  };
})