python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / nix / nixos-option / default.nix
blob9137e5a716c50ffe46f51e1b52681a605cc4ebd2
1 {lib, stdenv, boost, cmake, pkg-config, nix, ... }:
3 stdenv.mkDerivation rec {
4   name = "nixos-option";
5   src = ./.;
6   nativeBuildInputs = [ cmake pkg-config ];
7   buildInputs = [ boost nix ];
8   meta = with lib; {
9     license = licenses.lgpl2Plus;
10     maintainers = with maintainers; [ chkno ];
11     platforms = platforms.all;
12   };