haskellPackages.futhark-server: pin to 1.3.0.0 to match futhark

See https://github.com/diku-dk/futhark/issues/2397#issuecomment-4063640028.
This commit is contained in:
sternenseemann
2026-03-15 20:44:34 +01:00
parent e1283fbe88
commit 9a6845e529
3 changed files with 40 additions and 3 deletions
@@ -32,6 +32,7 @@ default-package-overrides:
# 2025-12-26: Needs to match egison-pattern-src from Stackage LTS
- egison-pattern-src-th-mode < 0.2.2
- extensions == 0.1.0.2 # matches Cabal 3.12 (GHC 9.10)
- futhark-server == 1.3.0.0 # required by futhark-0.25.36
# 2026-01-30: Needs to match hasql from Stackage LTS 24
- hasql-notifications < 0.2.5.0
# 2026-02-04: as requested by ghcide >= 2.13
@@ -1023,9 +1023,11 @@ builtins.intersectAttrs super {
];
}) super.lsp-test;
lsp_2_8_0_0 = doDistribute (super.lsp_2_8_0_0.override {
lsp-types = self.lsp-types_2_4_0_0;
});
lsp_2_8_0_0 = doDistribute (
super.lsp_2_8_0_0.override {
lsp-types = self.lsp-types_2_4_0_0;
}
);
lsp-types_2_4_0_0 = doDistribute super.lsp-types_2_4_0_0;
# the test suite attempts to run the binaries built in this package
+34
View File
@@ -253917,6 +253917,39 @@ self: {
) { };
futhark-server = callPackage (
{
mkDerivation,
base,
binary,
bytestring,
directory,
futhark-data,
mtl,
process,
temporary,
text,
}:
mkDerivation {
pname = "futhark-server";
version = "1.3.0.0";
sha256 = "1v8c5zfsc6x48z31lrfcyibbj4742cql3lglg6l59ly39cxi4and";
libraryHaskellDepends = [
base
binary
bytestring
directory
futhark-data
mtl
process
temporary
text
];
description = "Client implementation of the Futhark server protocol";
license = lib.licensesSpdx."ISC";
}
) { };
futhark-server_1_3_2_0 = callPackage (
{
mkDerivation,
base,
@@ -253948,6 +253981,7 @@ self: {
];
description = "Client implementation of the Futhark server protocol";
license = lib.licensesSpdx."ISC";
hydraPlatforms = lib.platforms.none;
}
) { };