mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
11 lines
303 B
Nix
11 lines
303 B
Nix
{lib, stdenv, boost, cmake, pkgconfig, nix, ... }:
|
|
stdenv.mkDerivation rec {
|
|
name = "nixos-option";
|
|
src = ./.;
|
|
nativeBuildInputs = [ cmake pkgconfig ];
|
|
buildInputs = [ boost nix ];
|
|
meta = {
|
|
license = stdenv.lib.licenses.lgpl2Plus;
|
|
maintainers = with lib.maintainers; [ chkno ];
|
|
};
|
|
}
|