2021-02-05 17:12:51 +00:00
|
|
|
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
|
2020-04-24 23:36:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nixos-option";
|
|
|
|
src = ./.;
|
2021-02-05 17:12:51 +00:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2020-04-24 23:36:52 +00:00
|
|
|
buildInputs = [ boost nix ];
|
2021-02-05 17:12:51 +00:00
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ chkno ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|