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
@@ -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";
};