about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/audio/glyr/default.nix
blob: 41490381487e16aba07f70a0634401b37847467a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, fetchFromGitHub, cmake
, curl, glib, sqlite, pkgconfig }:

stdenv.mkDerivation rec {
  version = "1.0.10";
  pname = "glyr";

  src = fetchFromGitHub {
    owner = "sahib";
    repo = "glyr";
    rev = version;
    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 ];
    platforms = platforms.unix;
  };
}