tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
cantata: 2.1.0 -> 2.2.0
Peter Hoeg
8 years ago
14594db4
85f0eef6
+7
-8
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
cantata
default.nix
+7
-8
pkgs/applications/audio/cantata/default.nix
···
34
assert withReplaygain -> withTaglib;
35
36
let
37
-
version = "2.1.0";
38
pname = "cantata";
39
fstat = x: fn: "-DENABLE_" + fn + "=" + (if x then "ON" else "OFF");
40
fstats = x: map (fstat x);
···
47
owner = "CDrummond";
48
repo = "cantata";
49
rev = "v${version}";
50
-
sha256 = "1mwc3cyrvg8qxjn70h4i6kdkvz85xspb3wi8wrb56jrhil409fkh";
51
};
52
53
buildInputs = [ vlc ]
···
86
87
# This is already fixed upstream but not released yet. Maybe in version 2.
88
preConfigure = ''
89
-
sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake
90
'';
91
92
meta = with stdenv.lib; {
93
-
homepage = https://github.com/cdrummond/cantata;
94
description = "A graphical client for MPD";
95
-
license = licenses.gpl3;
96
-
97
# Technically Cantata can run on Windows so if someone wants to
98
# bother figuring that one out, be my guest.
99
-
platforms = platforms.linux;
100
-
maintainers = with maintainers; [ fuuzetsu ];
101
};
102
}
···
34
assert withReplaygain -> withTaglib;
35
36
let
37
+
version = "2.2.0";
38
pname = "cantata";
39
fstat = x: fn: "-DENABLE_" + fn + "=" + (if x then "ON" else "OFF");
40
fstats = x: map (fstat x);
···
47
owner = "CDrummond";
48
repo = "cantata";
49
rev = "v${version}";
50
+
sha256 = "1b633chgfs8rya78bzzck5zijna15d1y4nmrz4dcjp862ks5y5q6";
51
};
52
53
buildInputs = [ vlc ]
···
86
87
# This is already fixed upstream but not released yet. Maybe in version 2.
88
preConfigure = ''
89
+
# sed -i -e 's/STRLESS/VERSION_LESS/g' cmake/FindTaglib.cmake
90
'';
91
92
meta = with stdenv.lib; {
93
+
homepage = https://github.com/cdrummond/cantata;
94
description = "A graphical client for MPD";
95
+
license = licenses.gpl3;
96
+
maintainers = with maintainers; [ fuuzetsu peterhoeg ];
97
# Technically Cantata can run on Windows so if someone wants to
98
# bother figuring that one out, be my guest.
99
+
platforms = platforms.linux;
0
100
};
101
}