From b515f80a162549a963b299cd7364064fb95b33ee Mon Sep 17 00:00:00 2001 From: Federico Beffa Date: Wed, 30 Oct 2024 14:43:54 +0100 Subject: [PATCH 1/2] ngspice: enable OSDI support --- pkgs/development/libraries/libngspice/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/libraries/libngspice/default.nix b/pkgs/development/libraries/libngspice/default.nix index 0270050cd001..1a31f88a6e9e 100644 --- a/pkgs/development/libraries/libngspice/default.nix +++ b/pkgs/development/libraries/libngspice/default.nix @@ -40,6 +40,7 @@ stdenv.mkDerivation rec { ] ++ [ "--enable-xspice" "--enable-cider" + "--enable-osdi" ]; enableParallelBuilding = true; From 8b37d453d0f71814db327f8b74fb4c8b0767b942 Mon Sep 17 00:00:00 2001 From: Federico Beffa Date: Sat, 2 Nov 2024 07:52:05 +0100 Subject: [PATCH 2/2] ngspice: remove rongcuid from maintainers on his request (PR #352381) --- pkgs/development/libraries/libngspice/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/libraries/libngspice/default.nix b/pkgs/development/libraries/libngspice/default.nix index 1a31f88a6e9e..044d1b25fafe 100644 --- a/pkgs/development/libraries/libngspice/default.nix +++ b/pkgs/development/libraries/libngspice/default.nix @@ -50,7 +50,7 @@ stdenv.mkDerivation rec { mainProgram = "ngspice"; homepage = "http://ngspice.sourceforge.net"; license = with licenses; [ bsd3 gpl2Plus lgpl2Plus ]; # See https://sourceforge.net/p/ngspice/ngspice/ci/master/tree/COPYING - maintainers = with maintainers; [ bgamari rongcuid ]; + maintainers = with maintainers; [ bgamari ]; platforms = platforms.unix; }; }