Skip to content

Instantly share code, notes, and snippets.

@nico202
Created February 12, 2016 11:45
Show Gist options
  • Save nico202/ffcad05aac66542f1bdf to your computer and use it in GitHub Desktop.
Save nico202/ffcad05aac66542f1bdf to your computer and use it in GitHub Desktop.
{ stdenv, fetchurl, fftwFloat, gtk2, ladspaPlugins, libjack2, liblo, libxml2
, pkgconfig, perl, perlXMLParser }:
stdenv.mkDerivation {
name = "jamin-0.95.0";
src = fetchurl {
url = mirror://sourceforge/jamin/jamin-0.95.0.tar.gz;
sha256 = "0g5v74cm0q3p3pzl6xmnp4rqayaymfli7c6z8s78h9rgd24fwbvn";
};
buildInputs = [ fftwFloat gtk2 ladspaPlugins libjack2 liblo libxml2
pkgconfig perl perlXMLParser ];
meta = with stdenv.lib; {
homepage = http://jamin.sourceforge.net;
description = "JACK Audio Mastering interface";
license = licenses.gpl2;
maintainers = [ maintainers.nico202 ];
platforms = platforms.linux;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment