1{ stdenv, fetchurl, autoreconfHook, glib, pkgconfig }:
2
3stdenv.mkDerivation rec {
4 version = "1.3";
5 name = "libsmf-${version}";
6 src = fetchurl {
7 url = "https://github.com/stump/libsmf/archive/${name}.tar.gz";
8 sha256 = "1527pcc1vd0l5iks2yw8m0bymcrnih2md5465lwpzw0wgy4rky7n";
9 };
10
11 buildInputs = [ autoreconfHook glib pkgconfig ];
12
13 meta = with stdenv.lib; {
14 description = "A C library for reading and writing Standard MIDI Files";
15 homepage = https://github.com/stump/libsmf;
16 license = licenses.bsd2;
17 maintainers = [ maintainers.goibhniu ];
18 platforms = platforms.linux;
19 };
20}