z88dk: 2020-01-27 -> 2.0

This commit is contained in:
Ben Siraphob 2020-10-29 11:04:13 +07:00
parent 2847e38623
commit ebced7f8c1

View File

@ -1,14 +1,14 @@
{ fetchFromGitHub, stdenv, makeWrapper, unzip, libxml2, m4, uthash, which }: { fetchFromGitHub, stdenv, makeWrapper, unzip, libxml2, m4, uthash, which }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "z88dk-unstable"; pname = "z88dk";
version = "2020-01-27"; version = "2.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "z88dk"; owner = "z88dk";
repo = "z88dk"; repo = "z88dk";
rev = "efdd07c2e2229cac7cfef97ec01f478004846e39"; rev = "v${version}";
sha256 = "0jcks5ygp256lmzmllffp4yb38cxjgdyqnnimkj4s65095cfasyb"; sha256 = "14r9bjw6lgz85a59a4ajspvg12swiqxi17zicl8r7p29pi9lsibp";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -50,10 +50,10 @@ stdenv.mkDerivation rec {
installTargets = [ "libs" "install" ]; installTargets = [ "libs" "install" ];
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = "https://www.z88dk.org"; homepage = "https://www.z88dk.org";
description = "z80 Development Kit"; description = "z80 Development Kit";
license = licenses.clArtistic; license = licenses.clArtistic;
maintainers = [ ]; maintainers = [ maintainers.siraben ];
platforms = platforms.linux; platforms = platforms.unix;
}; };
} }