uhttpmock: init at 0.5.0
This commit is contained in:
parent
47b19b5645
commit
e148cf2bca
24
pkgs/development/libraries/uhttpmock/default.nix
Normal file
24
pkgs/development/libraries/uhttpmock/default.nix
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{ 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";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ autoconf gtk_doc automake libtool pkgconfig 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; [ DamienCassou ];
|
||||||
|
};
|
||||||
|
}
|
@ -3786,6 +3786,8 @@ in
|
|||||||
|
|
||||||
udunits = callPackage ../development/libraries/udunits { };
|
udunits = callPackage ../development/libraries/udunits { };
|
||||||
|
|
||||||
|
uhttpmock = callPackage ../development/libraries/uhttpmock { };
|
||||||
|
|
||||||
uim = callPackage ../tools/inputmethods/uim {
|
uim = callPackage ../tools/inputmethods/uim {
|
||||||
inherit (pkgs.kde4) kdelibs;
|
inherit (pkgs.kde4) kdelibs;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user