tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
add clementine-1.2.1
Thomas Tuegel
12 years ago
776dea8d
7fd542fa
+64
3 changed files
expand all
collapse all
unified
split
pkgs
applications
audio
clementine
clementine-1.2.1-include-paths.patch
default.nix
top-level
all-packages.nix
+14
pkgs/applications/audio/clementine/clementine-1.2.1-include-paths.patch
···
1
1
+
diff -ur clementine-1.2.1-a/CMakeLists.txt clementine-1.2.1-b/CMakeLists.txt
2
2
+
--- clementine-1.2.1-a/CMakeLists.txt 2013-11-25 15:16:24.000000000 -0600
3
3
+
+++ clementine-1.2.1-b/CMakeLists.txt 2013-12-30 17:01:48.470011058 -0600
4
4
+
@@ -158,6 +158,10 @@
5
5
+
include_directories(${TAGLIB_INCLUDE_DIRS})
6
6
+
include_directories(${QJSON_INCLUDE_DIRS})
7
7
+
include_directories(${GSTREAMER_INCLUDE_DIRS})
8
8
+
+include_directories(${GSTREAMER_APP_INCLUDE_DIRS})
9
9
+
+include_directories(${GSTREAMER_BASE_INCLUDE_DIRS})
10
10
+
+include_directories(${GSTREAMER_CDDA_INCLUDE_DIRS})
11
11
+
+include_directories(${GSTREAMER_TAG_INCLUDE_DIRS})
12
12
+
include_directories(${GLIB_INCLUDE_DIRS})
13
13
+
include_directories(${GLIBCONFIG_INCLUDE_DIRS})
14
14
+
include_directories(${LIBXML_INCLUDE_DIRS})
+48
pkgs/applications/audio/clementine/default.nix
···
1
1
+
{ stdenv, fetchurl, boost, cmake, gettext, gstreamer, gst_plugins_base
2
2
+
, liblastfm, qt4, taglib, fftw, glew, qjson, sqlite, libgpod, libplist
3
3
+
, usbmuxd, libmtp, gvfs, libcdio, protobuf, libspotify, qca2, pkgconfig
4
4
+
, sparsehash }:
5
5
+
6
6
+
stdenv.mkDerivation {
7
7
+
name = "clementine-1.2.1";
8
8
+
9
9
+
src = fetchurl {
10
10
+
url = http://clementine-player.googlecode.com/files/clementine-1.2.1.tar.gz;
11
11
+
sha256 = "0kk5cjmb8nirx0im3c0z91af2k72zxi6lwzm6rb57qihya5nwmfv";
12
12
+
};
13
13
+
14
14
+
patches = [ ./clementine-1.2.1-include-paths.patch ];
15
15
+
16
16
+
buildInputs = [
17
17
+
boost
18
18
+
cmake
19
19
+
fftw
20
20
+
gettext
21
21
+
glew
22
22
+
gst_plugins_base
23
23
+
gstreamer
24
24
+
gvfs
25
25
+
libcdio
26
26
+
libgpod
27
27
+
liblastfm
28
28
+
libmtp
29
29
+
libplist
30
30
+
libspotify
31
31
+
pkgconfig
32
32
+
protobuf
33
33
+
qca2
34
34
+
qjson
35
35
+
qt4
36
36
+
sparsehash
37
37
+
sqlite
38
38
+
taglib
39
39
+
usbmuxd
40
40
+
];
41
41
+
42
42
+
meta = with stdenv.lib; {
43
43
+
homepage = "http://www.clementine-player.org";
44
44
+
description = "A multiplatform music player";
45
45
+
license = licenses.gpl3Plus;
46
46
+
platforms = platforms.linux;
47
47
+
};
48
48
+
}
+2
pkgs/top-level/all-packages.nix
···
664
664
665
665
cksfv = callPackage ../tools/networking/cksfv { };
666
666
667
667
+
clementine = callPackage ../applications/audio/clementine { };
668
668
+
667
669
ciopfs = callPackage ../tools/filesystems/ciopfs { };
668
670
669
671
colord = callPackage ../tools/misc/colord { };