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
1
-
{ stdenv, fetchurl, elementary, efl, automake, autoconf, libtool, pkgconfig, gst_all_1
1
1
+
{ stdenv, fetchurl, efl, automake, autoconf, libtool, pkgconfig, gst_all_1
2
2
, makeWrapper, lib }:
3
3
+
3
4
stdenv.mkDerivation rec {
4
5
name = "rage-${version}";
5
5
-
version = "0.1.4";
6
6
+
version = "0.2.0";
7
7
+
6
8
src = fetchurl {
7
9
url = "http://download.enlightenment.org/rel/apps/rage/${name}.tar.gz";
8
8
-
sha256 = "10j3n8crk16jzqz2hn5djx6vms5f6x83qyiaphhqx94h9dgv2mgg";
10
10
+
sha256 = "06fxhznwbd5x341r8ml3cpwmvwn0aq9i1akcgclk4vjdqiyff1d9";
9
11
};
12
12
+
13
13
+
nativeBuildInputs = [
14
14
+
automake autoconf libtool pkgconfig makeWrapper
15
15
+
];
16
16
+
17
17
+
NIX_CFLAGS_COMPILE = [
18
18
+
"-I${efl}/include/ecore-con-1"
19
19
+
"-I${efl}/include/ecore-evas-1"
20
20
+
"-I${efl}/include/ecore-file-1"
21
21
+
"-I${efl}/include/ecore-imf-1"
22
22
+
"-I${efl}/include/ecore-input-1"
23
23
+
"-I${efl}/include/eet-1"
24
24
+
"-I${efl}/include/efreet-1"
25
25
+
"-I${efl}/include/eldbus-1"
26
26
+
"-I${efl}/include/emile-1"
27
27
+
"-I${efl}/include/eo-1"
28
28
+
"-I${efl}/include/ethumb-1"
29
29
+
"-I${efl}/include/ethumb-client-1"
30
30
+
];
31
31
+
10
32
buildInputs = [
11
11
-
elementary efl automake autoconf libtool pkgconfig
12
12
-
makeWrapper
33
33
+
efl
13
34
gst_all_1.gstreamer
14
35
gst_all_1.gst-plugins-base
15
36
gst_all_1.gst-plugins-good
···
25
46
wrapProgram $out/bin/rage \
26
47
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0"
27
48
'';
49
49
+
28
50
meta = {
29
51
description = "Video + Audio player along the lines of mplayer";
30
52
homepage = http://enlightenment.org/;