about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/audio/glyr/default.nix
blob: 60585c3b3541140d338817cdc75606f09b63959f (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
{ lib, stdenv, fetchFromGitHub, cmake
, curl, glib, sqlite, pkg-config }:

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

  src = fetchFromGitHub {
    owner = "sahib";
    repo = "glyr";
    rev = version;
    sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr";
  };

  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ sqlite glib curl ];

  meta = with lib; {
    license = licenses.lgpl3;
    description = "A music related metadata searchengine";
    homepage = "https://github.com/sahib/glyr";
    maintainers = [ maintainers.sternenseemann ];
    platforms = platforms.unix;
  };
}