nixpkgs/pkgs/misc/sndio/default.nix
R. RyanTM 27166d50d9 sndio: 1.2.0 -> 1.5.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/sndio/versions
2019-06-02 21:26:46 -07:00

22 lines
586 B
Nix

{ stdenv, fetchurl, alsaLib }:
stdenv.mkDerivation rec {
name = "sndio-${version}";
version = "1.5.0";
enableParallelBuilding = true;
buildInputs = [ alsaLib ];
src = fetchurl {
url = "http://www.sndio.org/sndio-${version}.tar.gz";
sha256 = "0lyjb962w9qjkm3yywdywi7k2sxa2rl96v5jmrzcpncsfi201iqj";
};
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;
};
}