Merge pull request #265651 from vifino/sdcc-4.3.0

sdcc: 4.2.0 -> 4.4.0
This commit is contained in:
Yorick
2024-02-15 11:13:50 +01:00
committed by GitHub
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -18,11 +18,11 @@ assert lib.subtractLists [
] excludePorts == [];
stdenv.mkDerivation (finalAttrs: {
pname = "sdcc";
version = "4.2.0";
version = "4.4.0";
src = fetchurl {
url = "mirror://sourceforge/sdcc/sdcc-src-${finalAttrs.version}.tar.bz2";
hash = "sha256-tJuuHSO81gV6gsT/5WE/nNDLz9HpQOnYTEv+nfCowFM=";
hash = "sha256-rowSFl6xdoDf9EsyjYh5mWMGtyQe+jqDsuOy0veQanU=";
};
outputs = [ "out" "doc" "man" ];
@@ -9,14 +9,14 @@
buildPythonPackage rec {
pname = "fx2";
version = "unstable-2023-09-20";
version = "0.13";
format = "setuptools";
src = fetchFromGitHub {
owner = "whitequark";
repo = "libfx2";
rev = "73fa811818d56a86b82c12e07327946aeddd2b3e";
hash = "sha256-AGQPOVTdaUCUeVVNQTBmoNvz5CGxcBOK7+oL+X8AcIw=";
rev = "v${version}";
hash = "sha256-PtWxjT+97+EeNMN36zOT1+ost/w3lRRkaON3Cl3dpp4=";
};
nativeBuildInputs = [ sdcc ];