Skip to content

Commit

Permalink
smb3-foundry: 1.3.1 -> 1.4 (#369299)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomaSajt authored Dec 30, 2024
2 parents 06c04fd + c5a3212 commit 3be90b9
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions pkgs/by-name/sm/smb3-foundry/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,24 @@
}:

let
python = (
python3.withPackages (
ps: with ps; [
pyside6
py65
qdarkstyle
]
)
python = python3.withPackages (
ps: with ps; [
pyside6
py65
qdarkstyle
]
);

in
stdenv.mkDerivation (finalAttrs: {
pname = "smb3-foundry";
version = "1.3.1";
version = "1.4";

src = fetchFromGitHub {
owner = "mchlnix";
repo = "SMB3-Foundry";
rev = "refs/tags/${finalAttrs.version}";
hash = "sha256-8cf7VhvC372Cqi94n2FSHcoCGblpZoZvBXcXq5jU6CY=";
tag = finalAttrs.version;
hash = "sha256-9pztxzgdPqrTNUMtD9boxtqb32LCsGMoa/bBq5GSJ1I=";
};

buildInputs = [ python ];
Expand All @@ -42,7 +41,7 @@ stdenv.mkDerivation (finalAttrs: {
'';

meta = {
changelog = "https://github.com/mchlnix/SMB3-Foundry/releases/tag/${finalAttrs.version}";
changelog = "https://github.com/mchlnix/SMB3-Foundry/releases/tag/${finalAttrs.src.tag}";
description = "Modern Super Mario Bros. 3 Level Editor";
homepage = "https://github.com/mchlnix/SMB3-Foundry";
license = lib.licenses.gpl3Only;
Expand Down

0 comments on commit 3be90b9

Please sign in to comment.