mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
haskell-packages.nix: added path-pieces library, which is required by recent versions of web-route
svn path=/nixpkgs/trunk/; revision=28311
This commit is contained in:
parent
d701b71826
commit
2adbbf1572
15
pkgs/development/libraries/haskell/path-pieces/default.nix
Executable file
15
pkgs/development/libraries/haskell/path-pieces/default.nix
Executable file
@ -0,0 +1,15 @@
|
|||||||
|
{cabal, text} :
|
||||||
|
|
||||||
|
cabal.mkDerivation (self : {
|
||||||
|
pname = "path-pieces";
|
||||||
|
version = "0.0.0";
|
||||||
|
sha256 = "09sk4wlzy37gaii7spisjy4a3pizis9si4kv389bki20gfwpaivf";
|
||||||
|
propagatedBuildInputs = [ text ];
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/snoyberg/path-pieces";
|
||||||
|
description = "Components of paths.";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.stdenv.lib.platforms.haskellPlatforms;
|
||||||
|
maintainers = [ self.stdenv.lib.maintainers.simons ];
|
||||||
|
};
|
||||||
|
})
|
@ -845,6 +845,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||||||
|
|
||||||
OpenGL = self.OpenGL_2_2_1_1;
|
OpenGL = self.OpenGL_2_2_1_1;
|
||||||
|
|
||||||
|
pathPieces = callPackage ../development/libraries/haskell/path-pieces {};
|
||||||
|
|
||||||
pandoc_1_6_0_1 = callPackage ../development/libraries/haskell/pandoc/1.6.0.1.nix {
|
pandoc_1_6_0_1 = callPackage ../development/libraries/haskell/pandoc/1.6.0.1.nix {
|
||||||
texmath = self.texmath_0_4;
|
texmath = self.texmath_0_4;
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user