Fixed several "package has no version" warnings

This commit is contained in:
Pascal Wittmann
2015-05-14 17:19:41 +02:00
parent 1103392dd9
commit 9c9c586534
11 changed files with 33 additions and 24 deletions
@@ -7,10 +7,12 @@
assert stdenv.system == "x86_64-linux";
stdenv.mkDerivation rec {
name = "chromedriver_linux64";
product = "chromedriver_linux64";
name = "${product}-2.14";
version = "2.14";
src = fetchurl {
url = "http://chromedriver.storage.googleapis.com/2.14/${name}.zip";
url = "http://chromedriver.storage.googleapis.com/${version}/${product}.zip";
sha256 = "18kpky1v5pc3fv6kv9i2mf4wr4qicmfhf27h9zqy18gh16rlwrin";
};