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