uhttpmock: drop 0.0 abi

The current uhttpmock package refers to the 0.5.x release series/0.0
ABI. This is outdated, relies on the insecure libsoup 2.4, and has no
in-tree dependents. Thus, we drop it.
This commit is contained in:
whispers
2026-05-30 14:48:09 -04:00
parent d821a30f9a
commit d0ba6ac726
2 changed files with 2 additions and 61 deletions

View File

@@ -15,6 +15,8 @@
- `libgdata` has been removed, as it was archived upstream and relied on the insecure libsoup 2.4.
- `uhttpmock` providing 0.0 ABI was removed.
- `requireFile` now sets `meta.license = lib.licenses.unfree` by default. Users of `requireFile`-based derivations that preserve this default will need to explicitly allow their evaluation as described in [](#sec-allow-unfree).
## Other Notable Changes {#sec-nixpkgs-release-26.11-notable-changes}

View File

@@ -1,61 +0,0 @@
{
stdenv,
lib,
fetchFromGitLab,
meson,
mesonEmulatorHook,
ninja,
pkg-config,
gobject-introspection,
vala,
gtk-doc,
docbook-xsl-nons,
glib,
libsoup_2_4,
}:
stdenv.mkDerivation rec {
pname = "uhttpmock";
version = "0.5.5";
outputs = [
"out"
"dev"
"devdoc"
];
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = "pwithnall";
repo = "uhttpmock";
rev = version;
sha256 = "NuxiVVowZ8ilP9rcgapCe9OzFCpoOfZxZiSyjTeOrts=";
};
strictDeps = true;
nativeBuildInputs = [
meson
ninja
pkg-config
gobject-introspection
vala
gtk-doc
docbook-xsl-nons
]
++ lib.optionals (!stdenv.buildPlatform.canExecute stdenv.hostPlatform) [
mesonEmulatorHook
];
buildInputs = [
glib
libsoup_2_4
];
meta = {
description = "Project for mocking web service APIs which use HTTP or HTTPS";
homepage = "https://gitlab.freedesktop.org/pwithnall/uhttpmock/";
license = lib.licenses.lgpl21Plus;
maintainers = [ ];
platforms = lib.platforms.linux;
};
}