Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: eab992b4ac21
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6620221782ab
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 4, 2020

  1. Copy the full SHA
    6620221 View commit details
Showing with 7 additions and 6 deletions.
  1. +7 −6 pkgs/misc/emulators/openmsx/default.nix
13 changes: 7 additions & 6 deletions pkgs/misc/emulators/openmsx/default.nix
Original file line number Diff line number Diff line change
@@ -6,16 +6,17 @@
, freetype, tcl, zlib
}:

stdenv.mkDerivation {
with stdenv.lib;
stdenv.mkDerivation rec {

pname = "openmsx";
version = "git-2017-11-02";
version = "0.15.0";

src = fetchFromGitHub {
owner = "openMSX";
repo = "openMSX";
rev = "eeb74206ae347a3b17e9b99f91f2b4682c5db22c";
sha256 = "170amj7k6wjhwx6psbplqljvckvhxxbv3aw72jrdxl1fb8zlnq3s";
rev = "RELEASE_0_15_0";
sha256 = "1lv5kdw0812mkf7k20z2djzk0pbs792xq2mibbnz9rfjf02whi7l";
fetchSubmodules = true;
};

@@ -35,13 +36,13 @@ stdenv.mkDerivation {
# for providing support to Nixpkgs :)
TCL_CONFIG="${tcl}/lib/";

meta = with stdenv.lib; {
meta = {
description = "A MSX emulator";
longDescription = ''
OpenMSX is an emulator for the MSX home computer system. Its goal is
to emulate all aspects of the MSX with 100% accuracy.
'';
homepage = https://openmsx.org;
homepage = "https://openmsx.org";
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
};