tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rage: wrap libcurl.so in LD_LIBRARY_PATH
romildo
8 years ago
30e086d3
627724d3
+6
-1
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
enlightenment
rage.nix
+6
-1
pkgs/desktops/enlightenment/rage.nix
···
1
-
{ stdenv, fetchurl, pkgconfig, efl, gst_all_1, wrapGAppsHook }:
2
3
stdenv.mkDerivation rec {
4
name = "rage-${version}";
···
21
gst_all_1.gst-plugins-good
22
gst_all_1.gst-plugins-bad
23
gst_all_1.gst-libav
0
24
];
25
26
NIX_CFLAGS_COMPILE = [
···
37
"-I${efl}/include/ethumb-1"
38
"-I${efl}/include/ethumb-client-1"
39
];
0
0
0
0
40
41
meta = {
42
description = "Video + Audio player along the lines of mplayer";
···
1
+
{ stdenv, fetchurl, pkgconfig, efl, gst_all_1, curl, wrapGAppsHook }:
2
3
stdenv.mkDerivation rec {
4
name = "rage-${version}";
···
21
gst_all_1.gst-plugins-good
22
gst_all_1.gst-plugins-bad
23
gst_all_1.gst-libav
24
+
curl
25
];
26
27
NIX_CFLAGS_COMPILE = [
···
38
"-I${efl}/include/ethumb-1"
39
"-I${efl}/include/ethumb-client-1"
40
];
41
+
42
+
postInstall = ''
43
+
wrapProgram $out/bin/rage --prefix LD_LIBRARY_PATH : ${curl.out}/lib
44
+
'';
45
46
meta = {
47
description = "Video + Audio player along the lines of mplayer";