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
networkminer: fix gtk2 warning
gepbird.tngl.sh
9 months ago
0641ef27
101ba273
verified
This commit was signed with the committer's
known signature
.
gepbird.tngl.sh
SSH Key Fingerprint:
SHA256:MP2UpIRtJpbFFqyucP431H/FPCfn58UhEUTro4lXtRs=
+7
-1
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ne
networkminer
package.nix
+7
-1
pkgs/by-name/ne/networkminer/package.nix
reviewed
···
4
4
fetchzip,
5
5
dos2unix,
6
6
msbuild,
7
7
+
gtk2,
7
8
mono,
8
9
dotnetCorePackages,
9
10
}:
···
58
57
cp -r NetworkMiner/bin/Release $out/share/NetworkMiner
59
58
makeWrapper ${lib.getExe mono} $out/bin/NetworkMiner \
60
59
--add-flags "$out/share/NetworkMiner/NetworkMiner.exe" \
61
61
-
--add-flags "--noupdatecheck"
60
60
+
--add-flags "--noupdatecheck" \
61
61
+
--prefix LD_LIBRARY_PATH : ${
62
62
+
lib.makeLibraryPath [
63
63
+
gtk2
64
64
+
]
65
65
+
}
62
66
63
67
install -D NetworkMiner/NetworkMiner.desktop $out/share/applications/NetworkMiner.desktop
64
68
substituteInPlace $out/share/applications/NetworkMiner.desktop \