2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2021-01-17 10:17:16 +01:00
|
|
|
, curl, glib, sqlite, pkg-config }:
|
2017-04-02 01:38:14 +02:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version = "1.0.10";
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "glyr";
|
2017-04-02 01:38:14 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sahib";
|
|
|
|
repo = "glyr";
|
2019-09-09 01:38:31 +02:00
|
|
|
rev = version;
|
2017-04-02 01:38:14 +02:00
|
|
|
sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr";
|
|
|
|
};
|
|
|
|
|
2021-01-17 10:17:16 +01:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2017-04-02 01:38:14 +02:00
|
|
|
buildInputs = [ sqlite glib curl ];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2017-04-02 01:38:14 +02:00
|
|
|
description = "A music related metadata searchengine";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/sahib/glyr";
|
2022-05-05 02:46:39 +02:00
|
|
|
license = licenses.lgpl3;
|
2017-04-02 01:38:14 +02:00
|
|
|
maintainers = [ maintainers.sternenseemann ];
|
2022-05-05 02:46:39 +02:00
|
|
|
mainProgram = "glyrc";
|
2018-03-24 19:04:56 +01:00
|
|
|
platforms = platforms.unix;
|
2017-04-02 01:38:14 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|