MilkyTracker: Tidy up, sort buildInputs and use the attrPath for the license

This commit is contained in:
Cillian de Róiste 2013-10-30 00:07:18 +01:00
parent 39525c52d8
commit 9f6f87f76a

View File

@ -1,4 +1,6 @@
{ stdenv, fetchurl, alsaLib, SDL, automake, autoconf, jackaudio, perl, zlib, zziplib }:
{ stdenv, fetchurl, SDL, alsaLib, autoconf, automake, jackaudio, perl
, zlib, zziplib
}:
stdenv.mkDerivation rec {
version = "0.90.85";
@ -30,11 +32,11 @@ stdenv.mkDerivation rec {
export CPATH=${zlib}/lib
'';
buildInputs = [ alsaLib SDL automake autoconf jackaudio perl zlib zziplib ];
buildInputs = [ SDL alsaLib autoconf automake jackaudio perl zlib zziplib ];
meta = {
description = "Music tracker application, similar to Fasttracker II.";
homepage = http://milkytracker.org;
license = "GPLv3";
license = stdenv.lib.licenses.gpl3Plus;
};
}