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