Merge pull request #37738 from knedlsepp/enable-glyr-on-darwin

glyr: enable darwin build
This commit is contained in:
Jörg Thalheim 2018-03-24 19:13:20 +00:00 committed by GitHub
commit 628b944ad2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;
};
}