tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
sooperlooper: use autconf correctly
Matthew
9 years ago
aa9cd7b6
473a6564
+12
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
audio
sooperlooper
default.nix
+12
-4
pkgs/applications/audio/sooperlooper/default.nix
···
1
-
{ stdenv, fetchFromGitHub , liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
2
-
,libsamplerate, rubberband, pkgconfig, autoconf, automake, libtool, gettext, ncurses, which
0
3
}:
4
5
stdenv.mkDerivation rec {
6
name = "sooperlooper-git-${version}";
7
-
version = "19-07-2016";
8
9
src = fetchFromGitHub {
10
owner = "essej";
···
13
sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g";
14
};
15
0
0
0
0
0
0
0
16
buildInputs = [
17
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
18
-
libsamplerate rubberband pkgconfig autoconf automake libtool gettext ncurses which
19
];
20
21
meta = {
···
1
+
{ stdenv, fetchFromGitHub, liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
2
+
, libsamplerate, rubberband, pkgconfig, libtool, gettext, ncurses, which
3
+
, autoreconfHook
4
}:
5
6
stdenv.mkDerivation rec {
7
name = "sooperlooper-git-${version}";
8
+
version = "2016-07-19";
9
10
src = fetchFromGitHub {
11
owner = "essej";
···
14
sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g";
15
};
16
17
+
autoreconfPhase = ''
18
+
patchShebangs ./autogen.sh
19
+
./autogen.sh
20
+
'';
21
+
22
+
nativeBuildInputs = [ autoreconfHook pkgconfig which libtool ];
23
+
24
buildInputs = [
25
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
26
+
libsamplerate rubberband gettext ncurses
27
];
28
29
meta = {