lol
at 23.11-beta 27 lines 704 B view raw
1{ lib 2, rustPlatform 3, fetchFromGitHub 4}: 5 6rustPlatform.buildRustPackage rec { 7 pname = "lurk"; 8 version = "0.3.4"; 9 10 src = fetchFromGitHub { 11 owner = "jakwai01"; 12 repo = pname; 13 rev = "v${version}"; 14 hash = "sha256-7Yi77IsP/tmzrTvBVgIj2+fOXYKCT59pILeEuGuk4Y4="; 15 }; 16 17 cargoHash = "sha256-Cvtg9msoYkIIlaUw4hxWy2wSrE1uORR/2R2Geq4SI4w="; 18 19 meta = with lib; { 20 description = "A simple and pretty alternative to strace"; 21 homepage = "https://github.com/jakwai01/lurk"; 22 changelog = "https://github.com/jakwai01/lurk/releases/tag/${src.rev}"; 23 license = licenses.agpl3Only; 24 maintainers = with maintainers; [ figsoda ]; 25 platforms = [ "i686-linux" "x86_64-linux" ]; 26 }; 27}