tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
0
fork
atom
nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
0
fork
atom
overview
issues
pulls
pipelines
lurk: 0.3.4 -> 0.3.6
Franz Pletz
2 years ago
cc12cb0e
db5bef92
+16
-7
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
lurk
default.nix
+16
-7
pkgs/development/tools/lurk/default.nix
reviewed
···
1
1
-
{ lib
2
2
-
, rustPlatform
3
3
-
, fetchFromGitHub
1
1
+
{
2
2
+
lib,
3
3
+
rustPlatform,
4
4
+
fetchFromGitHub,
4
5
}:
5
6
6
7
rustPlatform.buildRustPackage rec {
7
8
pname = "lurk";
8
8
-
version = "0.3.4";
9
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
14
-
hash = "sha256-7Yi77IsP/tmzrTvBVgIj2+fOXYKCT59pILeEuGuk4Y4=";
15
15
+
hash = "sha256-u37q5AJe6zsPNe5L+k3uVP7r92X4v3qhApPKYndZif4=";
15
16
};
16
17
17
17
-
cargoHash = "sha256-Cvtg9msoYkIIlaUw4hxWy2wSrE1uORR/2R2Geq4SI4w=";
18
18
+
cargoHash = "sha256-1hKyrlCDsOe+F88lg4+I5JMxG44CN2MOLi4GlaDBctk=";
19
19
+
20
20
+
postPatch = ''
21
21
+
substituteInPlace src/lib.rs \
22
22
+
--replace-fail '/usr/bin/ls' 'ls'
23
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
32
-
platforms = [ "i686-linux" "x86_64-linux" ];
26
26
+
platforms = [
27
27
+
"i686-linux"
28
28
+
"x86_64-linux"
29
29
+
];
33
30
};
34
31
}