Unverified Commit 09c05674 authored by rewine's avatar rewine Committed by GitHub
Browse files

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

parents ac88cad0 a712978d
Loading
Loading
Loading
Loading
+11 −5
Original line number Diff line number Diff line
@@ -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;