nixpkgs/pkgs/development/libraries/audio/libsmf/default.nix

21 lines
611 B
Nix
Raw Normal View History

2014-11-28 21:39:09 +00:00
{ 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";
2014-11-28 14:14:10 +00:00
sha256 = "1527pcc1vd0l5iks2yw8m0bymcrnih2md5465lwpzw0wgy4rky7n";
};
2014-11-28 21:39:09 +00:00
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;
};
}