about summary refs log tree commit diff
path: root/pkgs/applications/emulators
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-08-08 23:26:29 -0300
committerAndersonTorres <torres.anderson.85@protonmail.com>2022-08-09 00:23:50 -0300
commit8b4479cf28ff6dfd2ba1518691d06b278ec3c4f7 (patch)
treebcd59eb8b21a3aab4d7ec2189ed997d4e2ae6cee /pkgs/applications/emulators
parent326a0fda17218da1bb8bc72039871547549980aa (diff)
x16-emulator: 40 -> 41
Diffstat (limited to 'pkgs/applications/emulators')
-rw-r--r--pkgs/applications/emulators/commanderx16/emulator.nix20
1 files changed, 10 insertions, 10 deletions
diff --git a/pkgs/applications/emulators/commanderx16/emulator.nix b/pkgs/applications/emulators/commanderx16/emulator.nix
index d070c86eef8ce..b36c2a794a8ad 100644
--- a/pkgs/applications/emulators/commanderx16/emulator.nix
+++ b/pkgs/applications/emulators/commanderx16/emulator.nix
@@ -4,15 +4,15 @@
 , SDL2
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "x16-emulator";
-  version = "40";
+  version = "41";
 
   src = fetchFromGitHub {
     owner = "commanderx16";
-    repo = pname;
-    rev = "r${version}";
-    hash = "sha256-7ZzVd2NJCFNAFrS2cj6bxcq/AzO5VakoFX9o1Ac9egg=";
+    repo = "x16-emulator";
+    rev = "r${finalAttrs.version}";
+    hash = "sha256-pnWqtSXQzUfQ8ADIXL9r2YjuBwHDQ2NAffAEFCN5Qzw=";
   };
 
   dontConfigure = true;
@@ -23,14 +23,14 @@ stdenv.mkDerivation rec {
     runHook preInstall
 
     install -Dm 755 -t $out/bin/ x16emu
-    install -Dm 444 -t $out/share/doc/${pname} README.md
+    install -Dm 444 -t $out/share/doc/x16-emulator/ README.md
 
     runHook postInstall
   '';
 
   meta = with lib; {
-    description = "The official emulator of CommanderX16 8-bit computer";
     homepage = "https://www.commanderx16.com/forum/index.php?/home/";
+    description = "The official emulator of CommanderX16 8-bit computer";
     license = licenses.bsd2;
     maintainers = with maintainers; [ AndersonTorres ];
     mainProgram = "x16emu";
@@ -38,8 +38,8 @@ stdenv.mkDerivation rec {
   };
 
   passthru = {
-    # upstream project recommends emulator and rom synchronized;
+    # upstream project recommends emulator and rom to be synchronized;
     # passing through the version is useful to ensure this
-    inherit version;
+    inherit (finalAttrs) version;
   };
-}
+})