haskell-git-annex: update to version 5.20140817

This commit is contained in:
Peter Simons 2014-08-19 20:43:26 +02:00
parent afd1ed90c9
commit 3fad02dab8

View File

@ -3,45 +3,38 @@
{ cabal, aeson, async, blazeBuilder, bloomfilter, bup, byteable { cabal, aeson, async, blazeBuilder, bloomfilter, bup, byteable
, caseInsensitive, clientsession, cryptoApi, cryptohash, curl , caseInsensitive, clientsession, cryptoApi, cryptohash, curl
, dataDefault, dataenc, DAV, dbus, dlist, dns, editDistance , dataDefault, dataenc, DAV, dbus, dlist, dns, editDistance
, exceptions, extensibleExceptions, fdoNotify, feed, filepath, git , exceptions, fdoNotify, feed, filepath, git, gnupg1, gnutls
, gnupg1, gnutls, hamlet, hinotify, hS3, hslogger, HTTP, httpClient , hamlet, hinotify, hS3, hslogger, httpClient, httpConduit
, httpConduit, httpTypes, IfElse, json, liftedBase, lsof, MissingH , httpTypes, IfElse, json, lsof, MissingH, monadControl, mtl
, monadControl, mtl, network, networkInfo, networkMulticast , network, networkInfo, networkMulticast, networkProtocolXmpp
, networkProtocolXmpp, openssh, optparseApplicative, pathPieces , openssh, optparseApplicative, pathPieces, perl, QuickCheck
, perl, QuickCheck, random, regexTdfa, rsync, SafeSemaphore , random, regexTdfa, rsync, SafeSemaphore, securemem, SHA
, securemem, SHA, shakespeare, stm, tasty, tastyHunit , shakespeare, stm, tasty, tastyHunit, tastyQuickcheck, tastyRerun
, tastyQuickcheck, tastyRerun, text, time, transformers, unixCompat , text, time, transformers, unixCompat, utf8String, uuid, wai
, utf8String, uuid, wai, waiExtra, warp, warpTls, which, xmlTypes , waiExtra, warp, warpTls, which, xmlTypes, yesod, yesodCore
, yesod, yesodCore, yesodDefault, yesodForm, yesodStatic , yesodDefault, yesodForm, yesodStatic
, fsnotify
}: }:
cabal.mkDerivation (self: { cabal.mkDerivation (self: {
pname = "git-annex"; pname = "git-annex";
version = "5.20140717"; version = "5.20140817";
sha256 = "199gqp85f6xnyg3svs23n3r6q4pflvz4zy5y376klay9mzzp0rbl"; sha256 = "0cly19rd250qiikzszgad2r5xz570kr00vcb8ij6icbm53pw3hxc";
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;
buildDepends = [ buildDepends = [
aeson async blazeBuilder bloomfilter byteable caseInsensitive aeson async blazeBuilder bloomfilter byteable caseInsensitive
clientsession cryptoApi cryptohash dataDefault dataenc DAV clientsession cryptoApi cryptohash dataDefault dataenc DAV dbus
dlist dns editDistance exceptions extensibleExceptions dlist dns editDistance exceptions fdoNotify feed filepath gnutls
feed filepath gnutls hamlet hS3 hslogger HTTP httpClient hamlet hinotify hS3 hslogger httpClient httpConduit httpTypes
httpConduit httpTypes IfElse json liftedBase MissingH monadControl IfElse json MissingH monadControl mtl network networkInfo
mtl network networkInfo networkMulticast networkProtocolXmpp networkMulticast networkProtocolXmpp optparseApplicative pathPieces
optparseApplicative pathPieces QuickCheck random regexTdfa QuickCheck random regexTdfa SafeSemaphore securemem SHA shakespeare
SafeSemaphore securemem SHA shakespeare stm tasty tastyHunit stm tasty tastyHunit tastyQuickcheck tastyRerun text time
tastyQuickcheck tastyRerun text time transformers unixCompat transformers unixCompat utf8String uuid wai waiExtra warp warpTls
utf8String uuid wai waiExtra warp warpTls xmlTypes yesod yesodCore xmlTypes yesod yesodCore yesodDefault yesodForm yesodStatic
yesodDefault yesodForm yesodStatic ];
] ++ (if self.stdenv.isDarwin then [
fsnotify
] else [
dbus fdoNotify hinotify
]);
buildTools = [ bup curl git gnupg1 lsof openssh perl rsync which ]; buildTools = [ bup curl git gnupg1 lsof openssh perl rsync which ];
configureFlags = "-fAssistant configureFlags = "-fAssistant -fProduction";
-fProduction";
preConfigure = '' preConfigure = ''
export HOME="$NIX_BUILD_TOP/tmp" export HOME="$NIX_BUILD_TOP/tmp"
mkdir "$HOME" mkdir "$HOME"
@ -57,6 +50,6 @@ cabal.mkDerivation (self: {
description = "manage files with git, without checking their contents into git"; description = "manage files with git, without checking their contents into git";
license = self.stdenv.lib.licenses.gpl3; license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms; platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.simons ]; maintainers = with self.stdenv.lib.maintainers; [ simons ];
}; };
}) })