Skip to content

Commit

Permalink
lurk: add aarch64-linux support (#362757)
Browse files Browse the repository at this point in the history
* lurk: refactor

* lurk: add aarch64-linux support
  • Loading branch information
gepbird authored Dec 7, 2024
1 parent bd50ced commit 1e2c885
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions pkgs/by-name/lu/lurk/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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=";
};

Expand All @@ -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"
];
};
}

0 comments on commit 1e2c885

Please sign in to comment.