nixpkgs/pkgs/development/libraries/uhttpmock/default.nix
John Ericson 531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00

27 lines
804 B
Nix

{ stdenv, lib, fetchFromGitLab, autoconf, gtk_doc, automake, libtool, pkgconfig, glib, libsoup, gobjectIntrospection }:
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 ];
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;
maintainers = with maintainers; [ ];
platforms = with platforms; linux;
};
}