at 18.03-beta 26 lines 804 B view raw
1{ stdenv, lib, fetchFromGitLab, autoconf, gtk-doc, automake, libtool, pkgconfig, glib, libsoup, gobjectIntrospection }: 2 3stdenv.mkDerivation rec { 4 version="0.5.0"; 5 name = "uhttpmock-${version}"; 6 7 src = fetchFromGitLab { 8 repo = "uhttpmock"; 9 owner = "uhttpmock"; 10 rev = version; 11 sha256 = "0kkf670abkq5ikm3mqls475lydfsd9by1kv5im4k757xrl1br1d4"; 12 }; 13 14 nativeBuildInputs = [ pkgconfig ]; 15 buildInputs = [ autoconf gtk-doc automake libtool glib libsoup gobjectIntrospection ]; 16 17 preConfigure = "./autogen.sh"; 18 19 meta = with lib; { 20 description = "Project for mocking web service APIs which use HTTP or HTTPS"; 21 homepage = https://gitlab.com/groups/uhttpmock/; 22 license = licenses.lgpl21; 23 maintainers = with maintainers; [ ]; 24 platforms = with platforms; linux; 25 }; 26}