nixpkgs/pkgs/development/libraries/uhttpmock/default.nix

27 lines
804 B
Nix
Raw Normal View History

{ stdenv, lib, fetchFromGitLab, autoconf, gtk-doc, automake, libtool, pkgconfig, glib, libsoup, gobjectIntrospection }:
2016-04-02 05:10:49 +00:00
stdenv.mkDerivation rec {
version="0.5.0";
name = "uhttpmock-${version}";
src = fetchFromGitLab {
repo = "uhttpmock";
owner = "uhttpmock";
rev = version;
sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ autoconf gtk-doc automake libtool glib libsoup gobjectIntrospection ];
2016-04-02 05:10:49 +00: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 10:00:14 +00:00
maintainers = with maintainers; [ ];
platforms = with platforms; linux;
2016-04-02 05:10:49 +00:00
};
}