Skip to content

Commit

Permalink
sooperlooper: git version fixes build.
Browse files Browse the repository at this point in the history
  • Loading branch information
magnetophon committed Jul 19, 2016
1 parent afa69e1 commit c0eac08
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions pkgs/applications/audio/sooperlooper/default.nix
Original file line number Diff line number Diff line change
@@ -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 = {
Expand Down

0 comments on commit c0eac08

Please sign in to comment.