git-annex: update to version 6.20170818

Fixes CVE-2017-9800, CVE-2017-12836, CVE-2017-1000116, and CVE-2017-1000117.

+1 -78
+1 -1
pkgs/development/haskell-modules/configuration-common.nix
··· 79 79 name = "git-annex-${drv.version}-src"; 80 80 url = "git://git-annex.branchable.com/"; 81 81 rev = "refs/tags/" + drv.version; 82 - sha256 = "1psyklfyjf4zqh3qxjn11sp2jiwvp8mfxqvsi1wggqpidfmk39jx"; 82 + sha256 = "15d29hmbl146axjgbm4qhxpz6ypcq1bjf2aj29yhwh5jmznh58i2"; 83 83 }; 84 84 })).override { 85 85 dbus = if pkgs.stdenv.isLinux then self.dbus else null;
-1
pkgs/development/haskell-modules/configuration-hackage2nix.yaml
··· 786 786 - gio ==0.13.3.1 787 787 - giphy-api ==0.5.2.0 788 788 - git ==0.2.0 789 - - git-annex ==6.20170520 790 789 - github ==0.16.0 791 790 - github-release ==1.0.5 792 791 - github-types ==0.2.1
-76
pkgs/development/haskell-modules/hackage-packages.nix
··· 77308 77308 }: 77309 77309 mkDerivation { 77310 77310 pname = "git-annex"; 77311 - version = "6.20170520"; 77312 - sha256 = "05r701gd7jqjcxcvm8l11fb04z8rqjalf4z8id693q9c2x29pkzq"; 77313 - configureFlags = [ 77314 - "-fassistant" "-fcryptonite" "-fdbus" "-fdesktopnotify" "-fdns" 77315 - "-ffeed" "-finotify" "-fpairing" "-fproduction" "-fquvi" "-fs3" 77316 - "-ftahoe" "-ftdfa" "-ftestsuite" "-ftorrentparser" "-fwebapp" 77317 - "-fwebapp-secure" "-fwebdav" "-fxmpp" 77318 - ]; 77319 - isLibrary = false; 77320 - isExecutable = true; 77321 - setupHaskellDepends = [ 77322 - base bytestring Cabal data-default directory exceptions filepath 77323 - hslogger IfElse process split unix unix-compat 77324 - ]; 77325 - executableHaskellDepends = [ 77326 - aeson async aws base blaze-builder bloomfilter byteable bytestring 77327 - case-insensitive clientsession concurrent-output conduit 77328 - conduit-extra containers crypto-api cryptonite data-default DAV 77329 - dbus directory disk-free-space dlist dns edit-distance esqueleto 77330 - exceptions fdo-notify feed filepath free hinotify hslogger 77331 - http-client http-conduit http-types IfElse magic memory 77332 - monad-control monad-logger mountpoints mtl network network-info 77333 - network-multicast network-uri old-locale optparse-applicative 77334 - path-pieces persistent persistent-sqlite persistent-template 77335 - process QuickCheck random regex-tdfa resourcet SafeSemaphore sandi 77336 - securemem shakespeare socks split stm stm-chans tasty tasty-hunit 77337 - tasty-quickcheck tasty-rerun template-haskell text time torrent 77338 - transformers unix unix-compat unordered-containers utf8-string uuid 77339 - wai wai-extra warp warp-tls yesod yesod-core yesod-default 77340 - yesod-form yesod-static 77341 - ]; 77342 - executableSystemDepends = [ 77343 - bup curl git gnupg lsof openssh perl rsync wget which 77344 - ]; 77345 - preConfigure = "export HOME=$TEMPDIR; patchShebangs ."; 77346 - installPhase = "make PREFIX=$out BUILDER=: install"; 77347 - checkPhase = '' 77348 - ln -sf dist/build/git-annex/git-annex git-annex 77349 - ln -sf git-annex git-annex-shell 77350 - export PATH+=":$PWD" 77351 - git-annex test 77352 - ''; 77353 - enableSharedExecutables = false; 77354 - homepage = "http://git-annex.branchable.com/"; 77355 - description = "manage files with git, without checking their contents into git"; 77356 - license = stdenv.lib.licenses.gpl3; 77357 - platforms = [ "i686-linux" "x86_64-linux" ]; 77358 - maintainers = with stdenv.lib.maintainers; [ peti ]; 77359 - }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; 77360 - inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh; 77361 - inherit (pkgs) perl; inherit (pkgs) rsync; inherit (pkgs) wget; 77362 - inherit (pkgs) which;}; 77363 - 77364 - "git-annex_6_20170818" = callPackage 77365 - ({ mkDerivation, aeson, async, aws, base, blaze-builder 77366 - , bloomfilter, bup, byteable, bytestring, Cabal, case-insensitive 77367 - , clientsession, concurrent-output, conduit, conduit-extra 77368 - , containers, crypto-api, cryptonite, curl, data-default, DAV, dbus 77369 - , directory, disk-free-space, dlist, dns, edit-distance, esqueleto 77370 - , exceptions, fdo-notify, feed, filepath, free, git, gnupg 77371 - , hinotify, hslogger, http-client, http-conduit, http-types, IfElse 77372 - , lsof, magic, memory, monad-control, monad-logger, mountpoints 77373 - , mtl, network, network-info, network-multicast, network-uri 77374 - , old-locale, openssh, optparse-applicative, path-pieces, perl 77375 - , persistent, persistent-sqlite, persistent-template, process 77376 - , QuickCheck, random, regex-tdfa, resourcet, rsync, SafeSemaphore 77377 - , sandi, securemem, shakespeare, socks, split, stm, stm-chans 77378 - , tasty, tasty-hunit, tasty-quickcheck, tasty-rerun 77379 - , template-haskell, text, time, torrent, transformers, unix 77380 - , unix-compat, unordered-containers, utf8-string, uuid, wai 77381 - , wai-extra, warp, warp-tls, wget, which, yesod, yesod-core 77382 - , yesod-default, yesod-form, yesod-static 77383 - }: 77384 - mkDerivation { 77385 - pname = "git-annex"; 77386 77311 version = "6.20170818"; 77387 77312 sha256 = "0ybxixbqvy4rx6mq9s02rh349rbr04hb17z4bfayin0qwa5kzpvx"; 77388 77313 configureFlags = [ ··· 77430 77355 description = "manage files with git, without checking their contents into git"; 77431 77356 license = stdenv.lib.licenses.gpl3; 77432 77357 platforms = [ "i686-linux" "x86_64-linux" ]; 77433 - hydraPlatforms = stdenv.lib.platforms.none; 77434 77358 maintainers = with stdenv.lib.maintainers; [ peti ]; 77435 77359 }) {inherit (pkgs) bup; inherit (pkgs) curl; inherit (pkgs) git; 77436 77360 inherit (pkgs) gnupg; inherit (pkgs) lsof; inherit (pkgs) openssh;