elektroid: 3.2.3 -> 3.3.2

This commit is contained in:
Xiangyan Sun
2026-04-09 22:11:54 -07:00
parent f97e195236
commit e0f65a0c6c
+7 -9
View File
@@ -10,23 +10,20 @@
libsndfile,
libzip,
pkg-config,
rubberband,
stdenv,
zlib,
}:
let
version = "3.2.3";
in
stdenv.mkDerivation {
inherit version;
stdenv.mkDerivation (finalAttrs: {
pname = "elektroid";
version = "3.3.2";
src = fetchFromGitHub {
owner = "dagargo";
repo = "elektroid";
rev = version;
hash = "sha256-gK6WQA0KenyksLLFHejCXDTpBm2uhJwn6/E4TXUdeJ8=";
rev = finalAttrs.version;
hash = "sha256-ozpc2+sXOedmYYXdIH6HibGszLyKsT8QYS0Trhem6kI=";
};
nativeBuildInputs = [
@@ -42,6 +39,7 @@ stdenv.mkDerivation {
libsamplerate
libsndfile
libzip
rubberband
zlib
];
@@ -51,4 +49,4 @@ stdenv.mkDerivation {
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ camelpunch ];
};
}
})