2021-01-19 00:59:07 -08:00
|
|
|
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
|
2019-09-05 17:29:01 -07:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "nixos-option";
|
|
|
|
src = ./.;
|
2021-01-19 00:59:07 -08:00
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
2019-09-05 17:29:01 -07:00
|
|
|
buildInputs = [ boost nix ];
|
2021-01-17 12:14:59 -08:00
|
|
|
meta = with lib; {
|
|
|
|
license = licenses.lgpl2Plus;
|
|
|
|
maintainers = with maintainers; [ chkno ];
|
2019-09-06 10:46:45 -07:00
|
|
|
};
|
2019-09-05 17:29:01 -07:00
|
|
|
}
|