lurk: add aarch64-linux support (#362757)

* lurk: refactor

* lurk: add aarch64-linux support
This commit is contained in:
Gutyina Gergő
2024-12-07 18:04:30 -05:00
committed by GitHub
parent bd50ced026
commit 1e2c885bb9
+10 -7
View File
@@ -10,8 +10,8 @@ rustPlatform.buildRustPackage rec {
src = fetchFromGitHub {
owner = "jakwai01";
repo = pname;
rev = "v${version}";
repo = "lurk";
tag = "v${version}";
hash = "sha256-KiM5w0YPxEpJ4cR/8YfhWlTrffqf5Ak1eu0yxgOmqUs=";
};
@@ -22,16 +22,19 @@ rustPlatform.buildRustPackage rec {
--replace-fail '/usr/bin/ls' 'ls'
'';
meta = with lib; {
meta = {
changelog = "https://github.com/jakwai01/lurk/releases/tag/v${version}";
description = "Simple and pretty alternative to strace";
mainProgram = "lurk";
homepage = "https://github.com/jakwai01/lurk";
changelog = "https://github.com/jakwai01/lurk/releases/tag/${src.rev}";
license = licenses.agpl3Only;
maintainers = with maintainers; [ figsoda ];
license = lib.licenses.agpl3Only;
mainProgram = "lurk";
maintainers = with lib.maintainers; [
figsoda
];
platforms = [
"i686-linux"
"x86_64-linux"
"aarch64-linux"
];
};
}