x16.rom: 44 -> 45

New dependency `lzsa`.
This commit is contained in:
Anderson Torres
2023-12-10 22:24:00 -03:00
parent 5f0c17edea
commit fd6fc06eb9
+4 -2
View File
@@ -2,22 +2,24 @@
, stdenv
, fetchFromGitHub
, cc65
, lzsa
, python3
}:
stdenv.mkDerivation (finalAttrs: {
pname = "x16-rom";
version = "44";
version = "45";
src = fetchFromGitHub {
owner = "X16Community";
repo = "x16-rom";
rev = "r${finalAttrs.version}";
hash = "sha256-x/U+8e869mkWZKmCiW2fZKGB9un2cFXNclemwxbAjLQ=";
hash = "sha256-gZAs383Lft2Ee9Cp2+Daxa/swwtNYI/T/7kNtn5ROSY=";
};
nativeBuildInputs = [
cc65
lzsa
python3
];