1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
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 22:58:40 +01: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;
};
}