nixpkgs/pkgs/applications/networking/flent/http-getter.nix
Matthew Bauer b4087750c3 flent/http-getter: broken on clang
(cherry picked from commit a5dcde16bbe737914849536362d15eb5a9675297)
2018-12-02 14:12:41 -06:00

24 lines
643 B
Nix

{ stdenv, fetchFromGitHub, cmake
, curl, pkgconfig }:
stdenv.mkDerivation rec {
pname = "http-getter";
version = "unstable-2018-06-06";
src = fetchFromGitHub {
owner = "tohojo";
repo = "http-getter";
rev = "79bcccce721825a745f089d0c347bbaf2e6e12f4";
sha256 = "1zxk52s1h5qx62idil237zdpj8agrry0w1xwkfx05wvv9sw4ld35";
};
buildInputs = [ cmake pkgconfig curl ];
meta = with stdenv.lib; {
homepage = https://github.com/tohojo/http-getter;
description = "Simple getter for HTTP URLs using cURL";
platforms = platforms.unix;
license = licenses.gpl3;
broken = stdenv.hostPlatform.cc.isClang;
};
}