mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-07 12:44:20 +00:00
git-annex: updated to version 3.20110902
svn path=/nixpkgs/trunk/; revision=28996
This commit is contained in:
parent
c79027e3ab
commit
2c0eddaeaa
@ -48,7 +48,7 @@ rec {
|
|||||||
gitAnnex = lib.makeOverridable (import ./git-annex) {
|
gitAnnex = lib.makeOverridable (import ./git-annex) {
|
||||||
inherit stdenv fetchurl libuuid rsync findutils curl perl git ikiwiki which;
|
inherit stdenv fetchurl libuuid rsync findutils curl perl git ikiwiki which;
|
||||||
inherit (haskellPackages) ghc MissingH utf8String pcreLight SHA dataenc
|
inherit (haskellPackages) ghc MissingH utf8String pcreLight SHA dataenc
|
||||||
HTTP testpack monadControl;
|
HTTP testpack monadControl hS3 mtl network hslogger hxt json;
|
||||||
QuickCheck2 = haskellPackages.QuickCheck_2_4_0_1;
|
QuickCheck2 = haskellPackages.QuickCheck_2_4_0_1;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1,20 +1,24 @@
|
|||||||
{ stdenv, fetchurl, ghc, libuuid, rsync, findutils, curl, perl, MissingH, utf8String
|
{ stdenv, fetchurl, curl, dataenc, findutils, ghc, git, hS3, hslogger, HTTP, hxt
|
||||||
, QuickCheck2, pcreLight, SHA, dataenc, HTTP, testpack, git, ikiwiki, which
|
, ikiwiki, json, libuuid, MissingH, monadControl, mtl, network, pcreLight, perl
|
||||||
, monadControl }:
|
, QuickCheck2, rsync, SHA, testpack, utf8String, which
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "3.20110819";
|
version = "3.20110902";
|
||||||
in
|
in
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
name = "git-annex-${version}";
|
name = "git-annex-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://ftp.de.debian.org/debian/pool/main/g/git-annex/git-annex_${version}.tar.gz";
|
url = "http://ftp.de.debian.org/debian/pool/main/g/git-annex/git-annex_${version}.tar.gz";
|
||||||
sha256 = "1442ba4ff35ec8f92f336a5f1055d7ad8306348871a9697262f4f2af3b3c0943";
|
sha256 = "1flw3472g19v6ins1nv66m51w15131013077yvfh2blywm0pqrl0";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ghc libuuid rsync findutils curl perl MissingH utf8String QuickCheck2 pcreLight
|
buildInputs = [
|
||||||
SHA dataenc HTTP testpack git ikiwiki which monadControl];
|
curl dataenc findutils ghc git hS3 hslogger HTTP hxt ikiwiki json
|
||||||
|
libuuid MissingH monadControl mtl network pcreLight perl QuickCheck2
|
||||||
|
rsync SHA testpack utf8String which
|
||||||
|
];
|
||||||
|
|
||||||
checkTarget = "test";
|
checkTarget = "test";
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
Loading…
Reference in New Issue
Block a user