47ace7b0af
`fd "\.nix" pkgs/tools/nix | xargs rg "strictDeps" --files-without-match | xargs rg "buildRust|buildGo|buildPyt|buildNim" --files-without-match | xargs vim -p` checked with Artturin/diffing
15 lines
353 B
Nix
15 lines
353 B
Nix
{lib, stdenv, boost, cmake, pkg-config, nix, ... }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "nixos-option";
|
|
src = ./.;
|
|
strictDeps = true;
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
buildInputs = [ boost nix ];
|
|
meta = with lib; {
|
|
license = licenses.lgpl2Plus;
|
|
maintainers = with maintainers; [ chkno ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|