haskell-hakyll: Allow it to build again
This commit is contained in:
parent
6558ab94a4
commit
1515dbf962
@ -15,6 +15,8 @@ cabal.mkDerivation (self: {
|
|||||||
sha256 = "1igna446dsidlq3f9myclgcdawgvyyjxjk3r3icjra6zgdqd6j4l";
|
sha256 = "1igna446dsidlq3f9myclgcdawgvyyjxjk3r3icjra6zgdqd6j4l";
|
||||||
isLibrary = true;
|
isLibrary = true;
|
||||||
isExecutable = true;
|
isExecutable = true;
|
||||||
|
patches = [ ./deps.patch ];
|
||||||
|
doCheck = !self.stdenv.isDarwin;
|
||||||
buildDepends = [
|
buildDepends = [
|
||||||
binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
|
binary blazeHtml blazeMarkup cmdargs cryptohash dataDefault deepseq
|
||||||
filepath fsnotify httpConduit httpTypes lrucache mtl network
|
filepath fsnotify httpConduit httpTypes lrucache mtl network
|
||||||
@ -26,14 +28,14 @@ cabal.mkDerivation (self: {
|
|||||||
filepath fsnotify httpConduit httpTypes HUnit lrucache mtl network
|
filepath fsnotify httpConduit httpTypes HUnit lrucache mtl network
|
||||||
networkUri pandoc pandocCiteproc parsec QuickCheck random regexBase
|
networkUri pandoc pandocCiteproc parsec QuickCheck random regexBase
|
||||||
regexTdfa snapCore snapServer systemFilepath tagsoup testFramework
|
regexTdfa snapCore snapServer systemFilepath tagsoup testFramework
|
||||||
testFrameworkHunit testFrameworkQuickcheck2 text time utillinux
|
testFrameworkHunit testFrameworkQuickcheck2 text time
|
||||||
];
|
] ++ (self.stdenv.lib.optional self.stdenv.isLinux utillinux);
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "http://jaspervdj.be/hakyll";
|
homepage = "http://jaspervdj.be/hakyll";
|
||||||
description = "A static website compiler library";
|
description = "A static website compiler library";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
maintainers = with self.stdenv.lib.maintainers; [ fuuzetsu ];
|
||||||
broken = true;
|
broken = self.stdenv.lib.versionOlder "7.7" self.ghc.version;
|
||||||
};
|
};
|
||||||
})
|
})
|
||||||
|
20
pkgs/development/libraries/haskell/hakyll/deps.patch
Normal file
20
pkgs/development/libraries/haskell/hakyll/deps.patch
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
--- a/hakyll.cabal.orig 2014-10-16 17:34:22.000000000 -0500
|
||||||
|
+++ b/hakyll.cabal 2014-10-16 17:34:30.000000000 -0500
|
||||||
|
@@ -163,7 +163,7 @@
|
||||||
|
pandoc-citeproc >= 0.4 && < 0.5,
|
||||||
|
parsec >= 3.0 && < 3.2,
|
||||||
|
process >= 1.0 && < 1.3,
|
||||||
|
- random >= 1.0 && < 1.1,
|
||||||
|
+ random >= 1.0 && < 1.2,
|
||||||
|
regex-base >= 0.93 && < 0.94,
|
||||||
|
regex-tdfa >= 1.1 && < 1.3,
|
||||||
|
tagsoup >= 0.13.1 && < 0.14,
|
||||||
|
@@ -250,7 +250,7 @@
|
||||||
|
pandoc-citeproc >= 0.4 && < 0.5,
|
||||||
|
parsec >= 3.0 && < 3.2,
|
||||||
|
process >= 1.0 && < 1.3,
|
||||||
|
- random >= 1.0 && < 1.1,
|
||||||
|
+ random >= 1.0 && < 1.2,
|
||||||
|
regex-base >= 0.93 && < 0.94,
|
||||||
|
regex-tdfa >= 1.1 && < 1.3,
|
||||||
|
tagsoup >= 0.13.1 && < 0.14,
|
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.4.nix
Normal file
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.4.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||||
|
|
||||||
|
{ cabal, aeson, aesonPretty, attoparsec, filepath, hexpat
|
||||||
|
, hsBibutils, mtl, pandoc, pandocTypes, parsec, rfc5051, split, syb
|
||||||
|
, tagsoup, temporary, text, time, vector, yaml
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "pandoc-citeproc";
|
||||||
|
version = "0.4.0.1";
|
||||||
|
sha256 = "1z21mdxa2hrwqdclriyn3s1qqij3ccbkg7hb0acxrk3pzgidcinx";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
buildDepends = [
|
||||||
|
aeson aesonPretty attoparsec filepath hexpat hsBibutils mtl pandoc
|
||||||
|
pandocTypes parsec rfc5051 split syb tagsoup temporary text time
|
||||||
|
vector yaml
|
||||||
|
];
|
||||||
|
testDepends = [
|
||||||
|
aeson filepath pandoc pandocTypes temporary text yaml
|
||||||
|
];
|
||||||
|
doCheck = false;
|
||||||
|
meta = {
|
||||||
|
description = "Supports using pandoc with citeproc";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.5.nix
Normal file
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.5.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||||
|
|
||||||
|
{ cabal, aeson, aesonPretty, attoparsec, filepath, hexpat
|
||||||
|
, hsBibutils, mtl, pandoc, pandocTypes, parsec, rfc5051, split, syb
|
||||||
|
, tagsoup, temporary, text, time, vector, yaml
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "pandoc-citeproc";
|
||||||
|
version = "0.5";
|
||||||
|
sha256 = "00azhpll0xnb9nnkh7c3hbfk0fzmvh5cgdxlgx7jvaglrmsnvzw3";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
doCheck = false;
|
||||||
|
buildDepends = [
|
||||||
|
aeson aesonPretty attoparsec filepath hexpat hsBibutils mtl pandoc
|
||||||
|
pandocTypes parsec rfc5051 split syb tagsoup temporary text time
|
||||||
|
vector yaml
|
||||||
|
];
|
||||||
|
testDepends = [
|
||||||
|
aeson filepath pandoc pandocTypes temporary text yaml
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
description = "Supports using pandoc with citeproc";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.6.nix
Normal file
28
pkgs/development/libraries/haskell/pandoc-citeproc/0.6.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
# This file was auto-generated by cabal2nix. Please do NOT edit manually!
|
||||||
|
|
||||||
|
{ cabal, aeson, aesonPretty, attoparsec, dataDefault, filepath
|
||||||
|
, hsBibutils, mtl, pandoc, pandocTypes, parsec, rfc5051, split, syb
|
||||||
|
, tagsoup, temporary, text, time, vector, xmlConduit, yaml
|
||||||
|
}:
|
||||||
|
|
||||||
|
cabal.mkDerivation (self: {
|
||||||
|
pname = "pandoc-citeproc";
|
||||||
|
version = "0.6";
|
||||||
|
sha256 = "1whi8mrbhfi8wr3qbj1lkgc1pngn8151jjri409hshl1mng4aq5b";
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
doCheck = false;
|
||||||
|
buildDepends = [
|
||||||
|
aeson aesonPretty attoparsec dataDefault filepath hsBibutils mtl
|
||||||
|
pandoc pandocTypes parsec rfc5051 split syb tagsoup temporary text
|
||||||
|
time vector xmlConduit yaml
|
||||||
|
];
|
||||||
|
testDepends = [
|
||||||
|
aeson filepath pandoc pandocTypes temporary text yaml
|
||||||
|
];
|
||||||
|
meta = {
|
||||||
|
description = "Supports using pandoc with citeproc";
|
||||||
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
|
platforms = self.ghc.meta.platforms;
|
||||||
|
};
|
||||||
|
})
|
@ -1041,7 +1041,9 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||||||
|
|
||||||
groupoids = callPackage ../development/libraries/haskell/groupoids {};
|
groupoids = callPackage ../development/libraries/haskell/groupoids {};
|
||||||
|
|
||||||
hakyll = callPackage ../development/libraries/haskell/hakyll {};
|
hakyll = callPackage ../development/libraries/haskell/hakyll {
|
||||||
|
pandocCiteproc = self.pandocCiteproc_0_4;
|
||||||
|
};
|
||||||
|
|
||||||
hamlet = callPackage ../development/libraries/haskell/hamlet {};
|
hamlet = callPackage ../development/libraries/haskell/hamlet {};
|
||||||
|
|
||||||
@ -1843,7 +1845,10 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||||||
|
|
||||||
pandoc = callPackage ../development/libraries/haskell/pandoc {};
|
pandoc = callPackage ../development/libraries/haskell/pandoc {};
|
||||||
|
|
||||||
pandocCiteproc = callPackage ../development/libraries/haskell/pandoc-citeproc {};
|
pandocCiteproc_0_4 = callPackage ../development/libraries/haskell/pandoc-citeproc/0.4.nix {};
|
||||||
|
pandocCiteproc_0_5 = callPackage ../development/libraries/haskell/pandoc-citeproc/0.5.nix {};
|
||||||
|
pandocCiteproc_0_6 = callPackage ../development/libraries/haskell/pandoc-citeproc/0.6.nix {};
|
||||||
|
pandocCiteproc = self.pandocCiteproc_0_6;
|
||||||
|
|
||||||
pandocTypes = callPackage ../development/libraries/haskell/pandoc-types {};
|
pandocTypes = callPackage ../development/libraries/haskell/pandoc-types {};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user