unigine-valley: 1.0-1 -> 1.0 (remove unnecessary release version)
The upstream version is "1.0", so that's what the version of the Nix package should be too. When I packaged this I wasn't aware that a Nix package could update without its version number increasing, so I added an extra "release version" (like Arch Linux packages). Of course, this isn't necessary.
This commit is contained in:
parent
1b6e2b9a19
commit
0d1d1bd7e2
|
@ -16,7 +16,6 @@
|
|||
|
||||
let
|
||||
version = "1.0";
|
||||
pkgversion = "1";
|
||||
|
||||
arch = if stdenv.system == "x86_64-linux" then
|
||||
"x64"
|
||||
|
@ -27,7 +26,7 @@ let
|
|||
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
name = "unigine-valley-${version}-${pkgversion}";
|
||||
name = "unigine-valley-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://assets.unigine.com/d/Unigine_Valley-${version}.run";
|
||||
|
|
Loading…
Reference in New Issue