summary refs log tree commit diff
path: root/pkgs/development/libraries/audio/libsmf/default.nix
blob: dce2e363cda5631b7d4a1c166dca940194f37dcb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, autoreconfHook, glib, pkgconfig }:

stdenv.mkDerivation rec {
  version = "1.3";
  name = "libsmf-${version}";
  src = fetchurl {
    url = "https://github.com/stump/libsmf/archive/${name}.tar.gz";
    sha256 = "1527pcc1vd0l5iks2yw8m0bymcrnih2md5465lwpzw0wgy4rky7n";
  };

  buildInputs = [ autoreconfHook glib pkgconfig ];

  meta = with stdenv.lib; {
    description = "A C library for reading and writing Standard MIDI Files";
    homepage = https://github.com/stump/libsmf;
    license = licenses.bsd2;
    maintainers = [ maintainers.goibhniu ];
    platforms = platforms.linux;
  };
}