biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / networking / flent / http-getter.nix
blob5ea07cfe4f9d64c35cbd4cec0d514e682665a2d1
1 { lib, stdenv, fetchFromGitHub, cmake, curl, pkg-config }:
3 stdenv.mkDerivation {
4   pname = "http-getter";
5   version = "unstable-2020-12-08";
7   src = fetchFromGitHub {
8     owner = "tohojo";
9     repo = "http-getter";
10     rev = "0b20f08133206aaf225946814ceb6b85ab37e136";
11     sha256 = "0plyqqwfm9bysichda0w3akbdxf6279wd4mx8mda0c4mxd4xy9nl";
12   };
14   nativeBuildInputs = [ cmake pkg-config ];
15   buildInputs = [ curl ];
17   meta = with lib; {
18     homepage = "https://github.com/tohojo/http-getter";
19     description = "Simple getter for HTTP URLs using cURL";
20     mainProgram = "http-getter";
21     platforms = platforms.unix;
22     license = licenses.gpl3;
23   };