2017-04-01 16:38:14 -07:00
|
|
|
{ stdenv, fetchFromGitHub, cmake
|
|
|
|
, curl, glib, sqlite, pkgconfig }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.10";
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "glyr";
|
2017-04-01 16:38:14 -07:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sahib";
|
|
|
|
repo = "glyr";
|
2019-09-08 16:38:31 -07:00
|
|
|
rev = version;
|
2017-04-01 16:38:14 -07:00
|
|
|
sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr";
|
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
|
|
buildInputs = [ sqlite glib curl ];
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
license = licenses.lgpl3;
|
|
|
|
description = "A music related metadata searchengine";
|
|
|
|
homepage = https://github.com/sahib/glyr;
|
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
2018-03-24 11:04:56 -07:00
|
|
|
platforms = platforms.unix;
|
2017-04-01 16:38:14 -07:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|