nixpkgs/pkgs/tools/audio/glyr/default.nix

28 lines
634 B
Nix
Raw Normal View History

2017-04-02 01:38:14 +02:00
{ stdenv, fetchFromGitHub, cmake
, curl, glib, sqlite, pkgconfig }:
stdenv.mkDerivation rec {
version = "1.0.10";
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";
};
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";
2017-04-02 01:38:14 +02:00
maintainers = [ maintainers.sternenseemann ];
2018-03-24 19:04:56 +01:00
platforms = platforms.unix;
2017-04-02 01:38:14 +02:00
};
}