1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

glyr: enable darwin build

This commit is contained in:
Josef Kemetmüller 2018-03-24 19:04:56 +01:00
parent a6425fc66d
commit ad3eb5d8fc

View file

@ -15,16 +15,12 @@ stdenv.mkDerivation rec {
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
platforms = platforms.unix;
};
}