openmsx: 2017-11-02 -> 0.15.0 (#83900)

This commit is contained in:
Anderson Torres 2020-04-04 19:29:15 -03:00 committed by GitHub
parent eab992b4ac
commit 6620221782
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,16 +6,17 @@
, freetype, tcl, zlib , freetype, tcl, zlib
}: }:
stdenv.mkDerivation { with stdenv.lib;
stdenv.mkDerivation rec {
pname = "openmsx"; pname = "openmsx";
version = "git-2017-11-02"; version = "0.15.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "openMSX"; owner = "openMSX";
repo = "openMSX"; repo = "openMSX";
rev = "eeb74206ae347a3b17e9b99f91f2b4682c5db22c"; rev = "RELEASE_0_15_0";
sha256 = "170amj7k6wjhwx6psbplqljvckvhxxbv3aw72jrdxl1fb8zlnq3s"; sha256 = "1lv5kdw0812mkf7k20z2djzk0pbs792xq2mibbnz9rfjf02whi7l";
fetchSubmodules = true; fetchSubmodules = true;
}; };
@ -35,13 +36,13 @@ stdenv.mkDerivation {
# for providing support to Nixpkgs :) # for providing support to Nixpkgs :)
TCL_CONFIG="${tcl}/lib/"; TCL_CONFIG="${tcl}/lib/";
meta = with stdenv.lib; { meta = {
description = "A MSX emulator"; description = "A MSX emulator";
longDescription = '' longDescription = ''
OpenMSX is an emulator for the MSX home computer system. Its goal is OpenMSX is an emulator for the MSX home computer system. Its goal is
to emulate all aspects of the MSX with 100% accuracy. to emulate all aspects of the MSX with 100% accuracy.
''; '';
homepage = https://openmsx.org; homepage = "https://openmsx.org";
maintainers = with maintainers; [ AndersonTorres ]; maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix; platforms = platforms.unix;
}; };