nixpkgs/pkgs/development/libraries/uci/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
743 B
Nix
Raw Normal View History

{ lib, stdenv, cmake, fetchgit, pkg-config, libubox }:
2020-02-12 01:02:19 +00:00
stdenv.mkDerivation {
pname = "uci";
version = "unstable-2021-04-14";
2020-02-12 01:02:19 +00:00
src = fetchgit {
url = "https://git.openwrt.org/project/uci.git";
rev = "4b3db1179747b6a6779029407984bacef851325c";
sha256 = "1zflxazazzkrycpflzfg420kzp7kgy4dlz85cms279vk07dc1d52";
2020-02-12 01:02:19 +00:00
};
hardeningDisable = [ "all" ];
cmakeFlags = [ "-DBUILD_LUA=OFF" ];
2020-02-12 01:02:19 +00:00
buildInputs = [ libubox ];
nativeBuildInputs = [ cmake pkg-config ];
2020-02-12 01:02:19 +00:00
meta = with lib; {
2020-02-12 01:02:19 +00:00
description = "OpenWrt Unified Configuration Interface";
homepage = "https://git.openwrt.org/?p=project/uci.git;a=summary";
license = licenses.lgpl21Only;
2020-02-12 01:02:19 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ ];
2020-02-12 01:02:19 +00:00
};
}