commit 581c7712faf596474f2cf5a3b9766876b3f29379
parent 4901f16129a5181f8adef063299c2ccc448f9ad1
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Mon, 9 Mar 2026 14:04:50 +0400
Up
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/pkgs/by-name/as/ascii-dash/package.nix b/pkgs/by-name/as/ascii-dash/package.nix
@@ -15,7 +15,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchurl {
url = "mirror://sourceforge/ascii-dash/ASCII-DASH-${finalAttrs.version}.zip";
- hash = "sha256-38wBq067aIq9wr34WIP6Kg9LLnc8/2xV9Q+LkmflB5U=";
+ hash = "sha256-j1knFVGCh2fwHIV0oauNqjzhEnxINFGjcjTXHQ5tPbc=";
};
postPatch = ''
diff --git a/pkgs/by-name/op/openscada/package.nix b/pkgs/by-name/op/openscada/package.nix
@@ -23,6 +23,7 @@
withPostgreSQL ? false,
withSNMP ? false,
withSoundCard ? false,
+ withSiemens ? stdenv.hostPlatform.isLinux,
}:
stdenv.mkDerivation (finalAttrs: {
@@ -77,6 +78,7 @@ stdenv.mkDerivation (finalAttrs: {
(lib.enableFeature withPostgreSQL "PostgreSQL")
(lib.enableFeature withSNMP "SNMP")
(lib.enableFeature withSoundCard "SoundCard")
+ (lib.enableFeature withSiemens "Siemens")
];
enableParallelBuilding = true;