0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

Add maintainer

This commit is contained in:
Chuck 2019-09-16 10:35:51 -07:00 committed by Linus Heckemann
parent 5646240870
commit 57a5752300
2 changed files with 8 additions and 1 deletions

View file

@ -1,4 +1,4 @@
{stdenv, boost, cmake, pkgconfig, nix, ... }:
{lib, stdenv, boost, cmake, pkgconfig, nix, ... }:
stdenv.mkDerivation rec {
name = "nixos-option";
src = ./.;
@ -6,5 +6,6 @@ stdenv.mkDerivation rec {
buildInputs = [ boost nix ];
meta = {
license = stdenv.lib.licenses.lgpl2Plus;
maintainers = with lib.maintainers; [ chkno ];
};
}