nixpkgs/pkgs/development/libraries/liblastfm/default.nix

31 lines
1,013 B
Nix
Raw Normal View History

2017-04-08 03:33:27 +00:00
{ stdenv, fetchurl, qt4, pkgconfig, libsamplerate, fftwSinglePrec, which, cmake
, darwin }:
let version = "1.1.0"; in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "liblastfm";
inherit version;
# Upstream does not package git tags as tarballs. Get tarball from github.
src = fetchurl {
2014-02-13 02:13:15 +00:00
url = "https://github.com/lastfm/liblastfm/tarball/${version}";
2019-08-13 21:52:01 +00:00
name = "${pname}-${version}.tar.gz";
sha256 = "1j34xc30vg7sfszm2jx9mlz9hy7p1l929fka9wnfcpbib8gfi43x";
};
prefixKey = "--prefix ";
propagatedBuildInputs = [ qt4 libsamplerate fftwSinglePrec ];
2014-02-13 02:13:15 +00:00
nativeBuildInputs = [ pkgconfig which cmake ];
2017-04-08 03:33:27 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin darwin.apple_sdk.frameworks.SystemConfiguration;
2018-10-18 18:51:13 +00:00
meta = with stdenv.lib; {
homepage = https://github.com/lastfm/liblastfm;
2014-02-13 02:13:15 +00:00
repositories.git = git://github.com/lastfm/liblastfm.git;
description = "Official LastFM library";
inherit (qt4.meta) platforms;
2018-10-18 18:51:13 +00:00
maintainers = [ maintainers.phreedom ];
license = licenses.gpl3;
};
}