2014-11-28 21:39:09 +00:00
|
|
|
{ stdenv, fetchurl, autoreconfHook, glib, pkgconfig }:
|
2014-11-27 23:34:17 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.3";
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "libsmf";
|
2014-11-27 23:34:17 +00:00
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://github.com/stump/libsmf/archive/${pname}-${version}.tar.gz";
|
2014-11-28 14:14:10 +00:00
|
|
|
sha256 = "1527pcc1vd0l5iks2yw8m0bymcrnih2md5465lwpzw0wgy4rky7n";
|
2014-11-27 23:34:17 +00:00
|
|
|
};
|
|
|
|
|
2017-09-05 22:26:13 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
buildInputs = [ glib ];
|
2014-11-27 23:34:17 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A C library for reading and writing Standard MIDI Files";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/stump/libsmf";
|
2014-11-27 23:34:17 +00:00
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = [ maintainers.goibhniu ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|