mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
sooperlooper: git version fixes build. (#17095)
see: https://github.com/essej/sooperlooper/pull/6
This commit is contained in:
parent
59a0426f28
commit
5ba8341ddc
1 changed files with 12 additions and 9 deletions
|
@ -1,18 +1,21 @@
|
|||
{ stdenv, fetchurl, liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
|
||||
,libsamplerate, rubberband, pkgconfig, ncurses
|
||||
{ stdenv, fetchFromGitHub , liblo, libxml2, libjack2, libsndfile, wxGTK, libsigcxx
|
||||
,libsamplerate, rubberband, pkgconfig, autoconf, automake, libtool, gettext, ncurses, which
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "sooperlooper-${version}";
|
||||
version = "1.7.3";
|
||||
src = fetchurl {
|
||||
url = "http://essej.net/sooperlooper/${name}.tar.gz";
|
||||
sha256 = "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs";
|
||||
name = "sooperlooper-git-${version}";
|
||||
version = "19-07-2016";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "essej";
|
||||
repo = "sooperlooper";
|
||||
rev = "3bdfe184cd59b51c757b8048536abc1146fb0de4";
|
||||
sha256 = "0qz25h4idv79m97ici2kzx72fwzks3lysyksk3p3rx72lsijhf3g";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
|
||||
libsamplerate rubberband pkgconfig ncurses
|
||||
liblo libxml2 libjack2 libsndfile wxGTK libsigcxx
|
||||
libsamplerate rubberband pkgconfig autoconf automake libtool gettext ncurses which
|
||||
];
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue