lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

glyr: init at 1.0.10

authored by

sternenseemann and committed by
Profpatsch
5b065a5b 7df8e53d

+33
+31
pkgs/tools/audio/glyr/default.nix
··· 1 + { stdenv, fetchFromGitHub, cmake 2 + , curl, glib, sqlite, pkgconfig }: 3 + 4 + stdenv.mkDerivation rec { 5 + version = "1.0.10"; 6 + name = "glyr-${version}"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "sahib"; 10 + repo = "glyr"; 11 + rev = "${version}"; 12 + sha256 = "1miwbqzkhg0v3zysrwh60pj9sv6ci4lzq2vq2hhc6pc6hdyh8xyr"; 13 + }; 14 + 15 + nativeBuildInputs = [ cmake pkgconfig ]; 16 + buildInputs = [ sqlite glib curl ]; 17 + 18 + configurePhase = '' 19 + cmake -DCMAKE_INSTALL_PREFIX=$out 20 + ''; 21 + 22 + meta = with stdenv.lib; { 23 + license = licenses.lgpl3; 24 + description = "A music related metadata searchengine"; 25 + homepage = https://github.com/sahib/glyr; 26 + maintainers = [ maintainers.sternenseemann ]; 27 + platforms = platforms.linux; # TODO macOS would be possible 28 + }; 29 + } 30 + 31 +
+2
pkgs/top-level/all-packages.nix
··· 539 539 540 540 gcsfuse = callPackage ../tools/filesystems/gcsfuse { }; 541 541 542 + glyr = callPackage ../tools/audio/glyr { }; 543 + 542 544 lastpass-cli = callPackage ../tools/security/lastpass-cli { }; 543 545 544 546 pass = callPackage ../tools/security/pass { };