mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Adding seq24: a minimal loop based midi sequencer
svn path=/nixpkgs/trunk/; revision=26924
This commit is contained in:
parent
eb9ed1c09f
commit
b150276393
21
pkgs/applications/audio/seq24/default.nix
Normal file
21
pkgs/applications/audio/seq24/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl, alsaLib, gtkmm, jackaudio, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "seq24-${version}";
|
||||
version = "0.9.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://launchpad.net/seq24/trunk/${version}/+download/${name}.tar.gz";
|
||||
sha256 = "07n80zj95i80vjmsflnlbqx5vv90qmp5f6a0zap8d30849l4y258";
|
||||
};
|
||||
|
||||
buildInputs = [ alsaLib gtkmm jackaudio pkgconfig ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "minimal loop based midi sequencer";
|
||||
homepage = "http://www.filter24.org/seq24";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.goibhniu ];
|
||||
};
|
||||
}
|
@ -6753,6 +6753,10 @@ let
|
||||
|
||||
semnotes = newScope pkgs.kde4 ../applications/misc/semnotes { };
|
||||
|
||||
seq24 = callPackage ../applications/audio/seq24 {
|
||||
inherit (gtkLibs) gtkmm;
|
||||
};
|
||||
|
||||
siproxd = callPackage ../applications/networking/siproxd { };
|
||||
|
||||
skype_linux = callPackage_i686 ../applications/networking/skype { };
|
||||
|
Loading…
Reference in New Issue
Block a user