Merge pull request #72922 from davidak/fix_versions

Fix package metadata like version and homepage
This commit is contained in:
Jan Tojnar
2019-11-11 09:05:08 +01:00
committed by GitHub
7 changed files with 21 additions and 22 deletions
+2 -2
View File
@@ -1,6 +1,6 @@
{ stdenv, fetchFromGitHub, autoconf, automake, zlib }:
stdenv.mkDerivation rec {
version = "v0.5.1";
version = "0.5.1";
pname = "wiiload";
nativeBuildInputs = [ autoconf automake ];
@@ -9,7 +9,7 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "devkitPro";
repo = "wiiload";
rev = version;
rev = "v${version}";
sha256 = "0dffy603zggkqv7g1a2jninmi64vy519gpgkdfhjnijhdm9gs5m3";
};