nix-serve-ng: 1.0.0-unstable-2024-12-02 -> 1.0.1-unstable-2025-05-28 (#429867)

This commit is contained in:
John Ericson
2025-08-11 16:42:18 -04:00
committed by GitHub
2 changed files with 18 additions and 14 deletions
@@ -339,25 +339,23 @@ builtins.intersectAttrs super {
# Add necessary reference to gtk3 package
gi-dbusmenugtk3 = addPkgconfigDepend pkgs.gtk3 super.gi-dbusmenugtk3;
nix-serve-ng =
(overrideCabal (old: {
nix-serve-ng = lib.pipe (super.nix-serve-ng.override { nix = pkgs.nixVersions.nix_2_28; }) [
# nix-serve-ng isn't regularly released to Hackage
(overrideSrc {
src = pkgs.fetchFromGitHub {
repo = "nix-serve-ng";
owner = "aristanetworks";
rev = "6e8d82a451fccbaa4714da8f7a3db5907bdfa96d";
hash = "sha256-Ht5wD/n2I/tQWNgYIdmi3UQbm1FNwp9m9JmDjZEd6ng=";
rev = "1d21f73a2d563ffbb924a4244c29b35e898caefe";
hash = "sha256-N6c3NozYqAGwmjf+k5GHOZzlcquDntrJwsZQ7O2sqtQ=";
};
version = "1.0.0-unstable-2024-12-02";
#editedCabalFile = null;
version = "1.0.1-unstable-2025-05-28";
})
(overrideCabal (old: {
# Doesn't declare boost dependency
pkg-configDepends = (old.pkg-configDepends or [ ]) ++ [ pkgs.boost.dev ];
# error: output '/nix/store/hv6lzj1nlshn8q5lirzgys8f4vgym4hg-nix-serve-ng-1.0.0-unstable-2024-12-02' is not allowed to refer to the following paths:
# /nix/store/qza2y18fwkq1wzi02qywf691r42r5jfy-ghc-9.6.6
broken = pkgs.stdenv.hostPlatform.system == "aarch64-darwin";
}) super.nix-serve-ng).override
{
nix = pkgs.nixVersions.nix_2_24;
};
}))
];
# These packages try to access the network.
amqp = dontCheck super.amqp;
+7 -1
View File
@@ -15797,7 +15797,13 @@ with pkgs;
nix-tree = haskell.lib.compose.justStaticExecutables (haskellPackages.nix-tree);
nix-serve-ng = haskell.lib.compose.justStaticExecutables haskellPackages.nix-serve-ng;
nix-serve-ng =
# FIXME: manually eliminate incorrect references on aarch64-darwin,
# see https://github.com/NixOS/nixpkgs/issues/318013
if stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isAarch64 then
haskellPackages.nix-serve-ng
else
haskell.lib.compose.justStaticExecutables haskellPackages.nix-serve-ng;
nix-visualize = python3.pkgs.callPackage ../tools/package-management/nix-visualize { };