mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
libubox: init at 2017-09-29
This commit is contained in:
parent
90858501ba
commit
7ec039bb2b
24
pkgs/development/libraries/libubox/default.nix
Normal file
24
pkgs/development/libraries/libubox/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, lib, fetchgit, cmake, pkgconfig, json_c }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libubox-2017-09-29";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.openwrt.org/project/libubox.git";
|
||||
rev = "632688e8d6cde32781e4ec685d59afb0938300ad";
|
||||
sha256 = "1rkwn287k7p802hbd9ap13xxrxsghq6827r86ymqbbcmbcrna13c";
|
||||
};
|
||||
|
||||
cmakeFlags = [ "-DBUILD_LUA=OFF" "-DBUILD_EXAMPLES=OFF" ];
|
||||
|
||||
nativeBuildInputs = [ cmake pkgconfig ];
|
||||
buildInputs = [ json_c ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "C utility functions for OpenWrt";
|
||||
homepage = "https://git.openwrt.org/?p=project/libubox.git;a=summary";
|
||||
license = licenses.isc;
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ fpletz ];
|
||||
};
|
||||
}
|
@ -9541,6 +9541,8 @@ with pkgs;
|
||||
|
||||
libu2f-server = callPackage ../development/libraries/libu2f-server { };
|
||||
|
||||
libubox = callPackage ../development/libraries/libubox { };
|
||||
|
||||
libuecc = callPackage ../development/libraries/libuecc { };
|
||||
|
||||
libui = callPackage ../development/libraries/libui { };
|
||||
|
Loading…
Reference in New Issue
Block a user