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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
814 B
Nix
Raw Normal View History

{ 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";
pname = "uhttpmock";
2016-04-02 07:10:49 +02:00
src = fetchFromGitLab {
repo = "uhttpmock";
owner = "uhttpmock";
rev = version;
sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4";
};
2021-12-12 10:00:04 +01:00
nativeBuildInputs = [ pkg-config autoconf automake gtk-doc libtool gobject-introspection ];
buildInputs = [ glib libsoup ];
2016-04-02 07:10:49 +02:00
2021-12-12 10:00:04 +01:00
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
2016-04-02 07:10:49 +02:00
meta = with lib; {
description = "Project for mocking web service APIs which use HTTP or HTTPS";
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; [ ];
platforms = with platforms; linux;
2016-04-02 07:10:49 +02:00
};
}