From c8b160538e5d4a484d93fa43cc7ae8752c5ab45b Mon Sep 17 00:00:00 2001 From: figsoda Date: Tue, 11 Jul 2023 14:41:17 -0400 Subject: [PATCH] microbin: 1.2.1 -> 2.0.4 Diff: https://github.com/szabodanika/microbin/compare/v1.2.1...v2.0.4 Changelog: https://github.com/szabodanika/microbin/releases/tag/v2.0.4 --- pkgs/servers/microbin/default.nix | 36 +++++++++++++++++++++++++------ 1 file changed, 29 insertions(+), 7 deletions(-) diff --git a/pkgs/servers/microbin/default.nix b/pkgs/servers/microbin/default.nix index d1048d107e2e..3d75a7ff8c7c 100644 --- a/pkgs/servers/microbin/default.nix +++ b/pkgs/servers/microbin/default.nix @@ -1,19 +1,41 @@ { lib , rustPlatform -, fetchCrate +, fetchFromGitHub +, pkg-config +, oniguruma +, openssl +, stdenv +, darwin }: rustPlatform.buildRustPackage rec { pname = "microbin"; - version = "1.2.1"; + version = "2.0.4"; - # The GitHub source is outdated - src = fetchCrate { - inherit pname version; - hash = "sha256-OLg0ejs9nanMNlY0lcnJ/RoRwefrXEaaROwx5aPx4u8="; + src = fetchFromGitHub { + owner = "szabodanika"; + repo = "microbin"; + rev = "v${version}"; + hash = "sha256-fsRpqSYDsuV0M6Xar2GVoyTgCPT39dcKJ6eW4YXCkQ0="; }; - cargoHash = "sha256-XdHP0XruqtyLyGbLHielnmTAc3ZgeIyyZnknO+5k4Xo="; + cargoHash = "sha256-7GSgyh2aJ2f8pozoh/0Yxzbk8Wg3JYuqSy/34ywAc2s="; + + nativeBuildInputs = [ + pkg-config + ]; + + buildInputs = [ + oniguruma + openssl + ] ++ lib.optionals stdenv.isDarwin [ + darwin.apple_sdk.frameworks.Security + ]; + + env = { + OPENSSL_NO_VENDOR = true; + RUSTONIG_SYSTEM_LIBONIG = true; + }; meta = with lib; { description = "A tiny, self-contained, configurable paste bin and URL shortener written in Rust";