d51d15e1cf
nixos/modules: stdenv.lib -> lib
12 lines
300 B
Nix
12 lines
300 B
Nix
{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 ];
|
|
};
|
|
}
|