darwin.rewrite-tbd: only build on darwin

+8 -1
+8 -1
pkgs/os-specific/darwin/rewrite-tbd/default.nix
··· 1 - { stdenv, fetchFromGitHub, cmake, pkg-config, libyaml }: 1 + { stdenv, lib, fetchFromGitHub, cmake, pkg-config, libyaml }: 2 2 3 3 stdenv.mkDerivation { 4 4 pname = "rewrite-tbd"; ··· 13 13 14 14 nativeBuildInputs = [ cmake pkg-config ]; 15 15 buildInputs = [ libyaml ]; 16 + 17 + meta = with lib; { 18 + homepage = "https://github.com/thefloweringash/rewrite-tbd/"; 19 + description = "Rewrite filepath in .tbd to Nix applicable format"; 20 + platforms = platforms.darwin; 21 + license = licenses.mit; 22 + }; 16 23 }