figsoda 2023-07-11 14:41:17 -04:00
parent f2406198ea
commit c8b160538e

View file

@ -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";