nixpkgs/pkgs/tools/nix/nixos-option/default.nix

14 lines
332 B
Nix
Raw Normal View History

2021-01-19 08:59:07 +00:00
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
2021-07-08 21:58:40 +00:00
stdenv.mkDerivation rec {
name = "nixos-option";
src = ./.;
2021-01-19 08:59:07 +00:00
nativeBuildInputs = [ cmake pkg-config ];
buildInputs = [ boost nix ];
2021-01-17 20:14:59 +00:00
meta = with lib; {
license = licenses.lgpl2Plus;
maintainers = with maintainers; [ chkno ];
platforms = platforms.all;
};
}