mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
26 lines
742 B
Nix
26 lines
742 B
Nix
{ stdenv, fetchurl, alsaLib, boost, cmake, glib, lash, libjack2, libarchive
|
|
, liblrdf, libsndfile, pkgconfig, qt4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.9.7";
|
|
name = "hydrogen-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/hydrogen-music/hydrogen/archive/${version}.tar.gz";
|
|
sha256 = "1dy2jfkdw0nchars4xi4isrz66fqn53a9qk13bqza7lhmsg3s3qy";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [
|
|
alsaLib boost cmake glib lash libjack2 libarchive liblrdf libsndfile qt4
|
|
];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Advanced drum machine";
|
|
homepage = http://www.hydrogen-music.org;
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.goibhniu ];
|
|
};
|
|
}
|