mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
glyr: init at 1.0.10
This commit is contained in:
parent
7df8e53d28
commit
5b065a5ba5
31
pkgs/tools/audio/glyr/default.nix
Normal file
31
pkgs/tools/audio/glyr/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ stdenv, fetchFromGitHub, cmake
|
||||
, curl, glib, sqlite, pkgconfig }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "1.0.10";
|
||||
name = "glyr-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "sahib";
|
||||
repo = "glyr";
|
||||
rev = "${version}";
|
||||
sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ sqlite glib curl ];
|
||||
|
||||
configurePhase = ''
|
||||
cmake -DCMAKE_INSTALL_PREFIX=$out
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
license = licenses.lgpl3;
|
||||
description = "A music related metadata searchengine";
|
||||
homepage = https://github.com/sahib/glyr;
|
||||
maintainers = [ maintainers.sternenseemann ];
|
||||
platforms = platforms.linux; # TODO macOS would be possible
|
||||
};
|
||||
}
|
||||
|
||||
|
|
@ -539,6 +539,8 @@ with pkgs;
|
|||
|
||||
gcsfuse = callPackage ../tools/filesystems/gcsfuse { };
|
||||
|
||||
glyr = callPackage ../tools/audio/glyr { };
|
||||
|
||||
lastpass-cli = callPackage ../tools/security/lastpass-cli { };
|
||||
|
||||
pass = callPackage ../tools/security/pass { };
|
||||
|
|
Loading…
Reference in a new issue