Created
February 12, 2016 11:45
-
-
Save nico202/ffcad05aac66542f1bdf to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ 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