conkeror: Switched to zip snapshots, because tarballs are different on every fetchurl.

svn path=/nixpkgs/trunk/; revision=21298
This commit is contained in:
Alexander Tsamutali 2010-04-24 19:09:33 +00:00
parent f45cfbe272
commit 755d7d8883
2 changed files with 5 additions and 4 deletions

View File

@ -1,10 +1,11 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, unzip }:
stdenv.mkDerivation {
name = "conkeror-0.9.2";
src = fetchurl {
url = http://repo.or.cz/w/conkeror.git/snapshot/efacc207b0d6c7b3899fc584c9f48547b18da076.tar.gz;
sha256 = "179rkf32p83dzgfjghc4kglb03h8aivddliynsydr6zxy8c4p28f";
url = http://repo.or.cz/w/conkeror.git/snapshot/efacc207b0d6c7b3899fc584c9f48547b18da076.zip;
sha256 = "1bkrrskrmhpx2xp90zgi5jrz4akynkxv2nzk5hzg0a17ikdi5ql8";
};
buildInputs = [ unzip ];
installPhase = ''
cp -r . $out
'';

View File

@ -7032,7 +7032,7 @@ let
conkeror = xulrunnerWrapper {
launcher = "conkeror";
application = import ../applications/networking/browsers/conkeror {
inherit stdenv fetchurl;
inherit stdenv fetchurl unzip;
};
};