mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
20 lines
461 B
Nix
20 lines
461 B
Nix
|
{ stdenv, fetchurl, pkgconfig, curl, openssl }:
|
||
|
|
||
|
stdenv.mkDerivation rec {
|
||
|
name = "liblastfm-SF-0.3.2";
|
||
|
|
||
|
buildInputs = [ pkgconfig ];
|
||
|
|
||
|
propagatedBuildInputs = [ curl openssl ];
|
||
|
|
||
|
src = fetchurl {
|
||
|
url = "mirror://sourceforge/liblastfm/liblastfm-0.3.2.tar.gz";
|
||
|
sha256 = "1hk62giysi96h6cyjyph69nlv1v4vw45w3sx7i2m89i9aysd6qp7";
|
||
|
};
|
||
|
|
||
|
meta = {
|
||
|
homepage = http://liblastfm.sourceforge.net;
|
||
|
description = "Unofficial C lastfm library";
|
||
|
};
|
||
|
}
|