lol

lurk: 0.3.3 -> 0.3.4

Diff: https://github.com/jakwai01/lurk/compare/v0.3.3...v0.3.4

Changelog: https://github.com/jakwai01/lurk/releases/tag/v0.3.4

authored by

figsoda and committed by
Matthieu Coudron
3b9fc499 b24f9836

+3 -21
+3 -21
pkgs/development/tools/lurk/default.nix
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 - , fetchpatch 5 }: 6 7 rustPlatform.buildRustPackage rec { 8 pname = "lurk"; 9 - version = "0.3.3"; 10 11 src = fetchFromGitHub { 12 owner = "jakwai01"; 13 repo = pname; 14 rev = "v${version}"; 15 - hash = "sha256-D/wJAmlc6OUuD8kSfGevG+UoPKy58X0lObL7mjiBG+c="; 16 }; 17 18 - cargoHash = "sha256-PFR6jMAvEybT/XOfLrv21F8ZxSX0BZDiEFtgQL5fL18="; 19 - 20 - cargoPatches = [ 21 - # update the version to 0.3.3 22 - (fetchpatch { 23 - name = "chore-prepare-release.patch"; 24 - url = "https://github.com/JakWai01/lurk/commit/cb4355674159255ac4186283a93de294de057d1b.patch"; 25 - hash = "sha256-N+/8AGEToEqhkQ6BYGQP279foZbt6DzUBmAUaHm9hW4="; 26 - }) 27 - ]; 28 - 29 - patches = [ 30 - (fetchpatch { 31 - name = "fix-tests.patch"; 32 - url = "https://github.com/JakWai01/lurk/commit/87eb4aa8bf9a551b24cec2146699cb2c22d62019.patch"; 33 - hash = "sha256-m44m1338VODX+HGEVMLozKfVvXsQxvLIpo28VBK//vM="; 34 - }) 35 - ]; 36 37 meta = with lib; { 38 description = "A simple and pretty alternative to strace";
··· 1 { lib 2 , rustPlatform 3 , fetchFromGitHub 4 }: 5 6 rustPlatform.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";