summary refs log blame commit diff
path: root/pkgs/tools/nix/nixos-option/default.nix
blob: 9137e5a716c50ffe46f51e1b52681a605cc4ebd2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                   
 


                         
                                           
                              


                                              
                              
    
 
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:

stdenv.mkDerivation rec {
  name = "nixos-option";
  src = ./.;
  nativeBuildInputs = [ cmake pkg-config ];
  buildInputs = [ boost nix ];
  meta = with lib; {
    license = licenses.lgpl2Plus;
    maintainers = with maintainers; [ chkno ];
    platforms = platforms.all;
  };
}