haskell: update yi to 0.8.1

This commit is contained in:
Benno Fünfstück 2014-04-12 17:18:50 +02:00
parent 4fea09ca4c
commit 2fd160f027
2 changed files with 19 additions and 18 deletions

View File

@ -1,10 +1,12 @@
{ cabal, dataAccessor, filepath, mtl, split, yi }: { cabal, filepath, lens, mtl, split, time, transformersBase, yi }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "yi-contrib"; pname = "yi-contrib";
version = "0.7.2"; version = "0.8.1";
sha256 = "074cq1y0pp66r2fqqszd8w2pws8jbfwq9g39w3rsgjnw83058fr8"; sha256 = "0jsbga30x302mr708vj5y7cpc961vh85dshpq2zlrf44dh0kmpvf";
buildDepends = [ dataAccessor filepath mtl split yi ]; buildDepends = [
filepath lens mtl split time transformersBase yi
];
meta = { meta = {
homepage = "http://haskell.org/haskellwiki/Yi"; homepage = "http://haskell.org/haskellwiki/Yi";
description = "Add-ons to Yi, the Haskell-Scriptable Editor"; description = "Add-ons to Yi, the Haskell-Scriptable Editor";

View File

@ -1,31 +1,30 @@
{ cabal, alex, binary, Cabal, cautiousFile, concreteTyperep { cabal, alex, binary, Cabal, cautiousFile, concreteTyperep
, dataAccessor, dataAccessorMtl, dataAccessorTemplate, derive, Diff , dataDefault, derive, Diff, dlist, dyre, filepath, fingertree
, dlist, dyre, filepath, fingertree, glib, gtk, hashable, hint , glib, gtk, hashable, hint, HUnit, lens, mtl, pango, parsec
, HUnit, mtl, pango, parsec, pointedlist, QuickCheck, random , pointedlist, QuickCheck, random, regexBase, regexTdfa, safe
, regexBase, regexTdfa, split, testFramework, testFrameworkHunit , split, tasty, tastyHunit, tastyQuickcheck, time, transformersBase
, time, uniplate, unixCompat, unorderedContainers, utf8String, vty , uniplate, unixCompat, unorderedContainers, utf8String, vty
, xdgBasedir , xdgBasedir
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "yi"; pname = "yi";
version = "0.7.2"; version = "0.8.1";
sha256 = "0g0hvr4zqcrmdl6mbdmrfxd5m51fhkhslvl9piwq83g2wirxqbvm"; sha256 = "1hyqlydc0na9pkb3fkbp13c6vnp4f80z8237bvrv12wkk5syyn23";
isLibrary = true; isLibrary = true;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
binary Cabal cautiousFile concreteTyperep dataAccessor binary Cabal cautiousFile concreteTyperep dataDefault derive Diff
dataAccessorMtl dataAccessorTemplate derive Diff dlist dyre dlist dyre filepath fingertree glib gtk hashable hint lens mtl
filepath fingertree glib gtk hashable hint mtl pango parsec pango parsec pointedlist QuickCheck random regexBase regexTdfa safe
pointedlist QuickCheck random regexBase regexTdfa split time split time transformersBase uniplate unixCompat unorderedContainers
uniplate unixCompat unorderedContainers utf8String vty xdgBasedir utf8String vty xdgBasedir
]; ];
testDepends = [ testDepends = [
filepath HUnit QuickCheck testFramework testFrameworkHunit filepath HUnit QuickCheck tasty tastyHunit tastyQuickcheck
]; ];
buildTools = [ alex ]; buildTools = [ alex ];
configureFlags = "-fpango"; configureFlags = "-fpango";
jailbreak = true;
doCheck = false; doCheck = false;
meta = { meta = {
homepage = "http://haskell.org/haskellwiki/Yi"; homepage = "http://haskell.org/haskellwiki/Yi";