nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

lurk: 0.3.4 -> 0.3.6

+16 -7
+16 -7
pkgs/development/tools/lurk/default.nix
··· 1 - { lib 2 - , rustPlatform 3 - , fetchFromGitHub 1 + { 2 + lib, 3 + rustPlatform, 4 + fetchFromGitHub, 4 5 }: 5 6 6 7 rustPlatform.buildRustPackage rec { 7 8 pname = "lurk"; 8 - version = "0.3.4"; 9 + version = "0.3.6"; 9 10 10 11 src = fetchFromGitHub { 11 12 owner = "jakwai01"; 12 13 repo = pname; 13 14 rev = "v${version}"; 14 - hash = "sha256-7Yi77IsP/tmzrTvBVgIj2+fOXYKCT59pILeEuGuk4Y4="; 15 + hash = "sha256-u37q5AJe6zsPNe5L+k3uVP7r92X4v3qhApPKYndZif4="; 15 16 }; 16 17 17 - cargoHash = "sha256-Cvtg9msoYkIIlaUw4hxWy2wSrE1uORR/2R2Geq4SI4w="; 18 + cargoHash = "sha256-1hKyrlCDsOe+F88lg4+I5JMxG44CN2MOLi4GlaDBctk="; 19 + 20 + postPatch = '' 21 + substituteInPlace src/lib.rs \ 22 + --replace-fail '/usr/bin/ls' 'ls' 23 + ''; 18 24 19 25 meta = with lib; { 20 26 description = "Simple and pretty alternative to strace"; ··· 29 23 changelog = "https://github.com/jakwai01/lurk/releases/tag/${src.rev}"; 30 24 license = licenses.agpl3Only; 31 25 maintainers = with maintainers; [ figsoda ]; 32 - platforms = [ "i686-linux" "x86_64-linux" ]; 26 + platforms = [ 27 + "i686-linux" 28 + "x86_64-linux" 29 + ]; 33 30 }; 34 31 }