pystring: 1.1.4-unstable-2025-06-23 -> 1.1.4-unstable-2025-10-07 (#449519)

This commit is contained in:
rewine
2025-10-13 01:14:37 +00:00
committed by GitHub

View File

@@ -2,21 +2,27 @@
stdenv,
lib,
fetchFromGitHub,
cmake,
meson,
ninja,
pkg-config,
}:
stdenv.mkDerivation {
pname = "pystring";
version = "1.1.4-unstable-2025-06-23";
version = "1.1.4-unstable-2025-10-07";
src = fetchFromGitHub {
owner = "imageworks";
repo = "pystring";
rev = "02ef1186d6b77bc35f385bd4db2da75b4736adb7";
hash = "sha256-M0/nDxeRo8NBQ3/SvBc0i5O4ImIP/A8ry/jA27dLybg=";
rev = "a09708a4870db7862e1a1aa42658c8e6e36547e7";
hash = "sha256-S43OkXcOCzPds2iDLunqg9a1zOiODo2dB9ReuOfe7Bw=";
};
nativeBuildInputs = [ cmake ];
nativeBuildInputs = [
meson
ninja
pkg-config
];
doCheck = true;