summary refs log tree commit diff
path: root/pkgs/misc/sndio/default.nix
blob: bd8e9671ddac30c04d540399211456325dca8c68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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;
  };
}