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