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

28 lines
634 B
Nix
Raw Normal View History

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