2018-02-24 18:23:58 -08:00
|
|
|
{ stdenv, lib, fetchFromGitLab, autoconf, gtk-doc, automake, libtool, pkgconfig, glib, libsoup, gobjectIntrospection }:
|
2016-04-01 22:10:49 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
version="0.5.0";
|
|
|
|
name = "uhttpmock-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitLab {
|
|
|
|
repo = "uhttpmock";
|
|
|
|
owner = "uhttpmock";
|
|
|
|
rev = version;
|
|
|
|
sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4";
|
|
|
|
};
|
|
|
|
|
2017-09-05 14:26:13 -07:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2018-02-24 18:23:58 -08:00
|
|
|
buildInputs = [ autoconf gtk-doc automake libtool glib libsoup gobjectIntrospection ];
|
2016-04-01 22:10:49 -07:00
|
|
|
|
|
|
|
preConfigure = "./autogen.sh";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Project for mocking web service APIs which use HTTP or HTTPS";
|
|
|
|
homepage = https://gitlab.com/groups/uhttpmock/;
|
|
|
|
license = licenses.lgpl21;
|
2017-01-31 02:00:14 -08:00
|
|
|
maintainers = with maintainers; [ ];
|
2016-08-02 10:50:55 -07:00
|
|
|
platforms = with platforms; linux;
|
2016-04-01 22:10:49 -07:00
|
|
|
};
|
|
|
|
}
|