
Changelog: https://github.com/SinTan1729/chhoto-url/releases/tag/6.2.13 Diff: https://github.com/SinTan1729/chhoto-url/compare/6.2.12...6.2.13
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
nixosTests,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "chhoto-url";
|
|
version = "6.2.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "SinTan1729";
|
|
repo = "chhoto-url";
|
|
tag = finalAttrs.version;
|
|
hash = "sha256-onGmDAVhT2lzq2pQ5runGuHgPdh1MjgFLU7DUvN7nt0=";
|
|
};
|
|
|
|
sourceRoot = "${finalAttrs.src.name}/actix";
|
|
|
|
postPatch = ''
|
|
substituteInPlace src/{main.rs,services.rs} \
|
|
--replace-fail "./resources/" "${placeholder "out"}/share/chhoto-url/resources/"
|
|
'';
|
|
|
|
cargoHash = "sha256-GbjbVr82Aj/CRdBl9gPGwHiyrc7l2F918DNnlEoPI58=";
|
|
|
|
postInstall = ''
|
|
mkdir -p $out/share/chhoto-url
|
|
cp -r ${finalAttrs.src}/resources $out/share/chhoto-url/resources
|
|
'';
|
|
|
|
passthru = {
|
|
tests = { inherit (nixosTests) chhoto-url; };
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "Simple, blazingly fast, selfhosted URL shortener with no unnecessary features";
|
|
homepage = "https://github.com/SinTan1729/chhoto-url";
|
|
changelog = "https://github.com/SinTan1729/chhoto-url/releases/tag/${finalAttrs.version}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ defelo ];
|
|
mainProgram = "chhoto-url";
|
|
};
|
|
})
|