nixpkgs/pkgs/misc/sndio/default.nix

22 lines
576 B
Nix
Raw Normal View History

2018-06-17 20:50:47 +00:00
{ stdenv, fetchurl, alsaLib }:
stdenv.mkDerivation rec {
pname = "sndio";
version = "1.6.0";
2018-06-17 20:50:47 +00:00
enableParallelBuilding = true;
buildInputs = [ alsaLib ];
src = fetchurl {
url = "http://www.sndio.org/sndio-${version}.tar.gz";
sha256 = "1havdx3q4mipgddmd2bnygr1yh6y64567m1yqwjapkhsq550dq4r";
2018-06-17 20:50:47 +00:00
};
meta = with stdenv.lib; {
homepage = "http://www.sndio.org";
description = "Small audio and MIDI framework part of the OpenBSD project";
license = licenses.isc;
maintainers = with maintainers; [ chiiruno ];
platforms = platforms.all;
};
}