aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/uci/default.nix
blob: e3bdea8c889048295d3ae8466d72ab4e82df9f50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, cmake, fetchgit, pkgconfig, libubox }:

stdenv.mkDerivation {
  pname = "uci";
  version = "unstable-2020-01-27";

  src = fetchgit {
    url = "https://git.openwrt.org/project/uci.git";
    rev = "e8d83732f9eb571dce71aa915ff38a072579610b";
    sha256 = "1si8dh8zzw4j6m7387qciw2akfvl7c4779s8q5ns2ys6dn4sz6by";
  };

  hardeningDisable = [ "all" ];
  cmakeFlags = [ "-D BUILD_LUA:BOOL=OFF" ];
  buildInputs = [ libubox ];
  nativeBuildInputs = [ cmake pkgconfig ];

  meta = with stdenv.lib; {
    description = "OpenWrt Unified Configuration Interface";
    homepage = "https://git.openwrt.org/?p=project/uci.git;a=summary";
    license = licenses.lgpl21;
    platforms = platforms.all;
    maintainers = with maintainers; [ petabyteboy ];
  };
}