tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
rage: 0.1.4 -> 0.2.0
José Romildo Malaquias
9 years ago
58a52f7e
b2222b1e
+27
-5
1 changed file
expand all
collapse all
unified
split
pkgs
desktops
enlightenment
rage.nix
+27
-5
pkgs/desktops/enlightenment/rage.nix
···
1
-
{ stdenv, fetchurl, elementary, efl, automake, autoconf, libtool, pkgconfig, gst_all_1
2
, makeWrapper, lib }:
0
3
stdenv.mkDerivation rec {
4
name = "rage-${version}";
5
-
version = "0.1.4";
0
6
src = fetchurl {
7
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
8
-
sha256 = "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg";
9
};
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
0
10
buildInputs = [
11
-
elementary efl automake autoconf libtool pkgconfig
12
-
makeWrapper
13
gst_all_1.gstreamer
14
gst_all_1.gst-plugins-base
15
gst_all_1.gst-plugins-good
···
25
wrapProgram $out/bin/rage \
26
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
27
'';
0
28
meta = {
29
description = "Video + Audio player along the lines of mplayer";
30
homepage = http://enlightenment.org/;
···
1
+
{ stdenv, fetchurl, efl, automake, autoconf, libtool, pkgconfig, gst_all_1
2
, makeWrapper, lib }:
3
+
4
stdenv.mkDerivation rec {
5
name = "rage-${version}";
6
+
version = "0.2.0";
7
+
8
src = fetchurl {
9
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
10
+
sha256 = "06fxhznwbd5x341r8ml3cpwmvwn0aq9i1akcgclk4vjdqiyff1d9";
11
};
12
+
13
+
nativeBuildInputs = [
14
+
automake autoconf libtool pkgconfig makeWrapper
15
+
];
16
+
17
+
NIX_CFLAGS_COMPILE = [
18
+
"-I${efl}/include/ecore-con-1"
19
+
"-I${efl}/include/ecore-evas-1"
20
+
"-I${efl}/include/ecore-file-1"
21
+
"-I${efl}/include/ecore-imf-1"
22
+
"-I${efl}/include/ecore-input-1"
23
+
"-I${efl}/include/eet-1"
24
+
"-I${efl}/include/efreet-1"
25
+
"-I${efl}/include/eldbus-1"
26
+
"-I${efl}/include/emile-1"
27
+
"-I${efl}/include/eo-1"
28
+
"-I${efl}/include/ethumb-1"
29
+
"-I${efl}/include/ethumb-client-1"
30
+
];
31
+
32
buildInputs = [
33
+
efl
0
34
gst_all_1.gstreamer
35
gst_all_1.gst-plugins-base
36
gst_all_1.gst-plugins-good
···
46
wrapProgram $out/bin/rage \
47
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
48
'';
49
+
50
meta = {
51
description = "Video + Audio player along the lines of mplayer";
52
homepage = http://enlightenment.org/;