12 lines
305 B
Nix
Raw Normal View History

2021-01-19 00:59:07 -08:00
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
stdenv.mkDerivation rec {
name = "nixos-option";
src = ./.;
2021-01-19 00:59:07 -08:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost nix ];
meta = {
license = stdenv.lib.licenses.lgpl2Plus;
2019-09-16 10:35:51 -07:00
maintainers = with lib.maintainers; [ chkno ];
};
}