From d82f4a3992f680d42b40211fed1f04efd0da0f4f Mon Sep 17 00:00:00 2001 From: Thomas Butter Date: Mon, 11 May 2026 05:19:49 +0000 Subject: [PATCH] ruri: 3.9.1 -> 3.9.3 --- pkgs/by-name/ru/ruri/cmake-install.patch | 20 -------------------- pkgs/by-name/ru/ruri/package.nix | 12 ++++-------- 2 files changed, 4 insertions(+), 28 deletions(-) delete mode 100644 pkgs/by-name/ru/ruri/cmake-install.patch diff --git a/pkgs/by-name/ru/ruri/cmake-install.patch b/pkgs/by-name/ru/ruri/cmake-install.patch deleted file mode 100644 index 668a594d7be5..000000000000 --- a/pkgs/by-name/ru/ruri/cmake-install.patch +++ /dev/null @@ -1,20 +0,0 @@ ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -201,7 +201,7 @@ - set(CMAKE_POSITION_INDEPENDENT_CODE ON) - set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC") - add_library(ruri SHARED ${SOURCES}) -- install (TARGETS ruri DESTINATION /usr/lib/) -+ install (TARGETS ruri) - else () - # add the executable - set(CMAKE_POSITION_INDEPENDENT_CODE OFF) -@@ -215,7 +215,7 @@ - VERBATIM - ) - endif() -- install (TARGETS ruri DESTINATION /usr/bin/) -+ install (TARGETS ruri) - endif() - - add_custom_target( diff --git a/pkgs/by-name/ru/ruri/package.nix b/pkgs/by-name/ru/ruri/package.nix index c7a5a63cbf1e..bca2585843d9 100644 --- a/pkgs/by-name/ru/ruri/package.nix +++ b/pkgs/by-name/ru/ruri/package.nix @@ -9,19 +9,15 @@ stdenv.mkDerivation (finalAttrs: { pname = "ruri"; - version = "3.9.1"; + version = "3.9.3"; src = fetchFromGitHub { owner = "RuriOSS"; repo = "ruri"; tag = "v${finalAttrs.version}"; - hash = "sha256-stM4hSLdSqmYUZ/XBD3Y1GylrrGRISlcy8LN07HREpQ="; + hash = "sha256-cFHbsaZwxu2ABAln5hGDSOib11M/1/4OeXz2EKXFlZI="; }; - patches = [ - ./cmake-install.patch - ]; - buildInputs = [ libcap libseccomp @@ -34,8 +30,8 @@ stdenv.mkDerivation (finalAttrs: { meta = { description = "Self-contained Linux container implementation"; homepage = "https://wiki.crack.moe/ruri"; - downloadPage = "https://github.com/Moe-hacker/ruri"; - changelog = "https://github.com/Moe-hacker/ruri/releases/tag/${finalAttrs.src.tag}"; + downloadPage = "https://github.com/RuriOSS/ruri"; + changelog = "https://github.com/RuriOSS/ruri/releases/tag/${finalAttrs.src.tag}"; mainProgram = "ruri"; license = lib.licenses.mit; platforms = lib.platforms.linux;