summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2015-05-14 17:18:17 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2015-05-14 17:19:41 +0200
commit9c9c5865347e010560ad29b52e9c1caf91f84afe (patch)
treebb1d8c7db23510178d15c3fe25e22057024ae2ed /pkgs/development
parent1103392dd9bb49857a040f0e85966dbcc0e564ad (diff)
downloadnixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar.gz
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar.bz2
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar.lz
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar.xz
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.tar.zst
nixpkgs-9c9c5865347e010560ad29b52e9c1caf91f84afe.zip
Fixed several "package has no version" warnings
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/arduino/arduino-core/default.nix2
-rw-r--r--pkgs/development/tools/misc/uncrustify/default.nix5
-rw-r--r--pkgs/development/tools/selenium/chromedriver/default.nix6
3 files changed, 8 insertions, 5 deletions
diff --git a/pkgs/development/arduino/arduino-core/default.nix b/pkgs/development/arduino/arduino-core/default.nix
index a751076537a..7a960dc931b 100644
--- a/pkgs/development/arduino/arduino-core/default.nix
+++ b/pkgs/development/arduino/arduino-core/default.nix
@@ -7,7 +7,7 @@ assert withGui -> gtk2 != null;
 stdenv.mkDerivation rec {
 
   version = "1.0.6";
-  name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}";
+  name = "arduino${stdenv.lib.optionalString (withGui == false) "-core"}-${version}";
 
   src = fetchFromGitHub {
     owner = "arduino";
diff --git a/pkgs/development/tools/misc/uncrustify/default.nix b/pkgs/development/tools/misc/uncrustify/default.nix
index f4add9a4b9e..70aedbb48d2 100644
--- a/pkgs/development/tools/misc/uncrustify/default.nix
+++ b/pkgs/development/tools/misc/uncrustify/default.nix
@@ -1,11 +1,12 @@
 { stdenv, fetchurl }:
 
 stdenv.mkDerivation rec {
-  name = "uncrustify";
+  name = "${product}-${version}";
+  product = "uncrustify";
   version = "0.61";
 
   src = fetchurl {
-    url = "mirror://sourceforge/uncrustify/${name}-${version}.tar.gz";
+    url = "mirror://sourceforge/uncrustify/${product}-${version}.tar.gz";
     sha256 = "1df0e5a2716e256f0a4993db12f23d10195b3030326fdf2e07f8e6421e172df9";
   };
 
diff --git a/pkgs/development/tools/selenium/chromedriver/default.nix b/pkgs/development/tools/selenium/chromedriver/default.nix
index f2d39938a48..8d9db34446d 100644
--- a/pkgs/development/tools/selenium/chromedriver/default.nix
+++ b/pkgs/development/tools/selenium/chromedriver/default.nix
@@ -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";
   };